2018-05-10 02:51 AM
How to design Embedded database system by using stm32 ?
2018-05-10 04:21 AM
A database is only a table.
the question is only about saving the file at every adjustment.
Where will you save the file ?
2018-05-10 05:15 AM
The answer ranges from easy to I.possible, depending on your definition of 'database'.
2018-05-11 10:33 AM
Well. I want to save data in SD card with embedded database such as sqllite.
Thank you.
2018-05-11 10:34 AM
Is it possible to save with sqllite or mysql embedded database
2018-05-11 05:01 PM
SqlLite is not so light that it will fit in a uController. maybe you could find an OpenSql.
you would have to disassemble the file structure an mimic the SqlLite functionality.
Extremely difficult.
A Database is a record based Table.
Every entry is the same length.
ie
char Name[24];
char Address[128]
char Phone[12];
then append your new record to the end of the file.
2018-05-11 08:17 PM
Well said. Could you give some example to develop embedded database with stm32 microcontroller by opensql.
2018-05-11 11:29 PM
I cant do your work, did you look for an open SQL ?
how many elements in your database ?
How many entries ?
How much RAM do you have ?
How can you sort the table, if you don't have enough RAM ?
You have issues with such a small RAM footprint.
in my server code, I created a 6MByte scratch area to sort tables.
2018-05-12 10:22 AM
Yes and no, depending on your ability to port.
a few simple ways:
1) port your database of choice to stm32;
2) port your operating system of choice (Windows, unix or linux, etc.) to stm32 and run your database from inside.
whether ***you*** can get any of that done is entirely up to your skills and dedication.