Sqlite on an embedded system

后端 未结 5 1554
走了就别回头了
走了就别回头了 2020-12-09 13:18

I have a database file that is generated on a PC using Sqlite. This file is then transferred to an ARM7 based embedded system without an operating system. The embedded sys

5条回答
  •  一生所求
    2020-12-09 13:46

    I'd try first with sqlite2, it might be leaner (or not). If that doesn't help, I'd say go with your own binary encoding.

    Unless your data file is really big, what you lose on SQLite great optimisations, you'll gain by not using SQL.

    Of course, use appropriate data structures (most probably a B*Tree or similar).

提交回复
热议问题