I have to convert XML data to SQLite then run some query on that SQLite Data and convert the query results back to XML. Do we have any C++ library for this. I am using Linux Operating System.
Regards,
Dinesh.
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.
I’m not aware of one library doing all that, and if so it would be horribly complicated. I’m pretty sure you’ll need to use two different libraries: One to do the XML parsing/writing and another to do the SQL transactions. You’d have a better design this way – separation of concerns.
libxml and libsqlite are two examples which are probably quickly installable in your current distribution. e.g.
sudo apt-get install libsqlite3-dev libxml2-devThen you’ll probably want to:
Hope this helps.