Search Results

3
votes

Xml or Sqlite, When to drop Xml for a Database?

XML is best used as an interchange format when you need to move data from your application to somewhere else or share information between applications. A database should be the preferred method of …
0
votes

Automated integration testing a C++ app with a database

As @Kris K. says dumping and restoring the database between each test will probabl …