0

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!

user2466860
  • 67
  • 1
  • 2
  • 13

1 Answers1

1

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.

0xDen
  • 92
  • 3
  • Thanks for the answer! Do you have some good documentation or getting started link for me? Is it difficult to get it communicate with an app in Android tablet? – user2466860 Feb 01 '15 at 19:25
  • Use searching in google :). I don't have any certain link for this issue. Also try to find out how does Android SDK support interaction with SQlite databases. I think all these answers you may find in Internet with google and a patience. – 0xDen Feb 02 '15 at 07:01