Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to find a good object oriented C++ (as opposed to C) wrapper for sqlite. What do people recommend? If you have several suggestions please put them in separate replies for voting purposes. Also, please indicate whether you have any experience of the wrapper you are suggesting and how you found it to use.

share|improve this question
1  
Also checkout the list at: sqlite.org/cvstrac/wiki?p=SqliteWrappers – User Aug 2 '11 at 18:44

11 Answers

This is really inviting down-votes, but here goes...

I use sqlite directly from C++, and don't see any value with an added C++ abstraction layer. It's quite good (and efficient) as is.

share|improve this answer
4  
Well you only got -4 for the two downvotes and I upvoted you. Using the C interface certainly is an option and likely to be the one we choose. Of course we may use a few light C++ wrappers, possibly boost::shared_ptr with custom deleters, and possibly exception to handle errors, but no real need for a huge API. – CashCow Jan 10 '11 at 18:36
@CashCow: Yes - thanks - I did just the same. – kotlinski Jan 11 '11 at 9:05

Another good wraper for databases in C++ is SOCI. It's not very OO, but the more Modern C++.

It supports Oracle, PostgreSQL and MySQL. A SQLite backend is in the CVS.

share|improve this answer

Here's one that hasn't been updated in a while, but compiles and runs on Mac OS GCC 4.3. It's also released under the MIT License, so you can use it in a commercial project, no problems. http://code.google.com/p/sqlite3pp/

The usage is boost-ified and very clean:

sqlite3pp::database db("test.db");
sqlite3pp::transaction xct(db);
{
    sqlite3pp::command cmd(db, "INSERT INTO contacts (name, phone) VALUES (:user, :phone)");
    cmd.bind(":user", "Mike");
    cmd.bind(":phone", "555-1234");
    cmd.execute();
}
xct.rollback();

See: http://code.google.com/p/sqlite3pp/wiki/UsagePage

share|improve this answer

Use Qt - it has great binding for SQLite that fits well into its overall design

share|improve this answer

I've used this one http://www.codeproject.com/KB/database/CppSQLite.aspx but I've moved to C#, so their may be newer/better ones now

share|improve this answer

This library is brilliant.

http://www.sqlapi.com/

There are Windows and Linux versions of the library available and I was up and running in minutes.

share|improve this answer
12  
I'm curious what's so brilliant about it? – Chris Kaminski Apr 21 '10 at 2:08
5  
Notice the library is shareware. I realized of that when I had changed all my source... – NeDark Dec 2 '10 at 22:00
7  
The site says "If you are browsing a local copy of SQLAPI++ Web, please, visit official ordering page at www.sqlapi.com\Order to verify that prices are up-to-date." Honestly I'm uncomfortable paying for a code library from a developer who doesn't know that backslash doesn't belong in a URI. ;) – Brett Gmoser Sep 10 '11 at 1:32

Perhaps you can take a look at

http://pocoproject.org

or

Platinum C++ Framework

share|improve this answer

I wasn't pleased with any I could find either, so I wrote my own: sqlite3cc.

Here's a code example:

sqlite::connection db( filename );

sqlite::command c( db, "UPDATE foo SET bar = ? WHERE name = ?" );
c << 123 << name << sqlite::exec;

sqlite::query q( db, "SELECT foo FROM bar" );
for( sqlite::query::iterator i = q.begin(); i != q.end(); i++ )
    std::cout << i->column< std::string >( 0 ) << "\n";
share|improve this answer
Is it no longer available for download? – NeDark Dec 2 '10 at 21:55
Yes, it is available. There has just been no proper releases yet. You can get the source code from the bazaar repository here or here (you'll need to download the bazaar RCS tools from here if you don't have them) or you can view the source code on-line here – edam Jan 2 '11 at 17:12

http://www.codeproject.com/KB/database/CppSQLite.aspx is just fantastic, it is very easy to port, I had it working on bcb5 (omg) in half an hour or so. It is about as thin as you can get and easy to understand. There are a goodly number of examples that cover just about every thing you need to know. It uses exceptions for error handling - I modified it to provide return codes in a mater of minutes. Only tricky issue is to create your own lib file none are provided.

try
{

    CppSQLite3DB db;

    db.open(asFileName.c_str());

    db.execDML("Update data set hrx = 0");

} // try

catch (...)
{

} // catch

Could not be much simpler than this.....

share|improve this answer

I also wasn't pleased with what I could find. Now you can write:

class Person {
public:
    Person() {}
    static SqlTable<Person>& table() {
        static SqlTable<Person> tab = SqlTable<Person>::sqlTable("Person",
            SqlColumn<Person>("Firstname",  makeAttr(&Reservation::firstname)),
            SqlColumn<Person>("Lastname",   makeAttr(&Reservation::lastname)),
            SqlColumn<Person>("Age",        makeAttr(&Reservation::age)),
        return tab;
    }
    std::string firstname;
    std::string lastname;
    int age;
};

SqliteDB db("testtable.db");
auto sel(db.select<Person>("Firstname=\"Danny\" and Lastname=\"Zeckzer\""));
std::for_each(sel.first, sel.second, [](const Person& p) {
...
Person me;
db.insert<Person>(me);
...
std::vector<Person> everybody;
db.insert<Person>(everybody.begin(), everybody.end());

The table method is all you need to write as long as you stick to the sqlite3 data types. As everything is a template not much abstraction layer code remains after -O. Natural joins require a result class similar to the Person class. The implementation is a single header with less than 500 lines. License is LGPL. Source

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.