Can I use sqlite to query an XML file?
I want to implement a simple c++ application that can query XML files, is it possible using sqlite?
I want to implement a simple c++ application that can query XML files, is it possible using sqlite?
Not directly, no. You would have to import the XML data into a sqlite database and query the database. Depending on the structure of your XML, that may or may not work well. XPath might be a better solution for you.