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.
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.
Have you tried libxml++? http://developer.gnome.org/libxml++-tutorial/stable/
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-dev
Then you'll probably want to:
Hope this helps.