Skip to main content
Senthil Karalasingam
Associate II
May 10, 2018
Question

how to develop embedded database system by using stm32

  • May 10, 2018
  • 8 replies
  • 2808 views
Posted on May 10, 2018 at 11:51

How to design Embedded database system by using stm32 ?

    This topic has been closed for replies.

    8 replies

    T J
    Senior III
    May 10, 2018
    Posted on May 10, 2018 at 13:21

    A database is only a table.

    the question is only about saving the file at every adjustment.

    Where will you save the file ?

    Senthil Karalasingam
    Associate II
    May 11, 2018
    Posted on May 11, 2018 at 17:33

    Well. I want to save data in SD card with embedded database such as sqllite.

    Thank you.

    henry.dick
    Associate II
    May 10, 2018
    Posted on May 10, 2018 at 14:15

    The answer ranges from easy to I.possible, depending on your definition of 'database'.

    Senthil Karalasingam
    Associate II
    May 11, 2018
    Posted on May 11, 2018 at 17:34

    Is it possible to save with sqllite or mysql embedded database

    T J
    Senior III
    May 12, 2018
    Posted on May 12, 2018 at 00:01

    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.