Welcome to your wiki!
This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: [SamplePage].
The wiki uses Markdown syntax.
A C++ wrapper SQLite for C++ users.
How to connect a SQLiteDB with SQLitePP? //define a connection SQLitePP::DBConnection conn;
// connect to a database int rc = conn.connect("D:\\mytestdb.db"); if (rc != 0) { std::cout << conn.getErrorMessage() << std::endl; return; }
Log in to post a comment.
A C++ wrapper SQLite for C++ users.
Last edit: Gavin 2012-07-01
How to connect a SQLiteDB with SQLitePP?
//define a connection
SQLitePP::DBConnection conn;
Last edit: Gavin 2012-07-01