Im actually working on a Embedded Linux board and I have got a requirement where I need to handle persistence of some relational data. So can anyone please suggest on various options available for the abovementioned. Thanks in advance
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you use C as programming language, try sqlite. If you use Java, use H2.
But a database isn’t always the best solution. So you should also consider something more simple, like a CSV or XML file, especially if the data rarely changes or when you only append.
Note that there is no generic answer to “what is the best option” since each case is slightly different. I suggest to build a small prototype to get a feeling what works and what doesn’t. A technology might be great but if you can’t wrap your mind around it, your code will be much more buggy than using an “inferior” technology which you can handle well.