Search code examples
mysqllinuxflashstoragezynq

Database in embedded linux (PetaLinux)


I'm working on a project with my Zynq SoC (TE0720) where I want to store some data into the NAND flash memory. I'm not so familiar with either Linux and databases. The goal is store some data for logging and view them on a tablet.

The data will change frequently so it needs to be stable. Can someone give me some advice on what I should choose? I really appreciate that.

Thanks!


Solution

  • Have a look at SQLite. I've seen and implemented several variants of such databases for embedded systems. There is no need to launch any database service, like in case with MySQL for example. You'll be able to use SQL queries to obtain, modify or insert any information.