Menu

Home

Gavin

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.

Project Admins:


Discussion

  • Gavin

    Gavin - 2012-07-01

    A C++ wrapper SQLite for C++ users.

     

    Last edit: Gavin 2012-07-01
  • Gavin

    Gavin - 2012-07-01

    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;
    }
    
     

    Last edit: Gavin 2012-07-01

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.