Linux SoftwareDatabaseDatabase APIssqlitewrapped 1.3

sqlitewrapped 1.3


sqlitewrapped is a C++ wrapper for the Sqlite database C application programming interface. The code works for linux/unix, as well
Developer:   Anders Hedstrom
      more software by author →
Price:  0.00
License:   GPL (GNU General Public License)
File size:   15K
Language:   
OS:   
Rating:   0 /5 (0 votes)
Your vote:  
enlarge screenshot


sqlitewrapped is a C++ wrapper for the Sqlite database C application programming interface.

The code works for linux/unix, as well as win32. This library supports version 3 of the sqlite database. From version 1.2 the connection pool can be made threadsafe.

Examples:

#include < stdio.h>
#include < stdlib.h>
#include < sqlite3.h>
#include < string>

#include "Database.h"
#include "Query.h"

int main()
{
Database db( "database_file.db" );
Query q(db);

q.execute("delete from user");
q.execute("insert into user values(1,'First Person')");
q.execute("insert into user values(2,'Another Person')");

q.get_result("select num,name from user");
while (q.fetch_row())
{
long num = q.getval();
std::string name = q.getstr();

printf("User#%ld: %sn", num, name.c_str() );
}
q.free_result();
}

What's New in This Release:
  • This release adds methods to access values in the result set by column name.
    tags user values  num name  this release  into user  insert into  sqlite database  from user  execute insert  the sqlite  

    Download sqlitewrapped 1.3


     http://www.alhem.net/project/sqlite/sqlitewrapped-1.3.tar.gz


    Authors software

    Similar software

    sqlitewrapped 1.3 (by Anders Hedstrom)
    sqlitewrapped is a C++ wrapper for the Sqlite database C application programming interface.

    The code works for linux/unix, as well

    MySQL wrapped 1.6 (by Anders Hedstr?m)

    Template::Tutorial 2.15 (by Andy Wardley)
    Template::Tutorial are template toolkit tutorials.

    This section includes tutorials on using the Template Toolkit

    MathML::Entities 0.13 (by Jacques Distler)
    MathML::Entities is a Perl module that can convert XHTML+MathML Named Entities to Numeric Character References.

    SYNOPSIS

    use M

    SQLite3Professional 1.2 (by SQLabs.net)
    SQLite3Professional is a plugin for REALBasic that gives you full low level access to sqlite 3 databases

    DBIx::Simple::Examples 1.26 (by Juerd Waalboer)

    DBIx::SQL::Abstract 0.07 (by Alejandro Juarez)

    DBD::mysql 3.0007 (by Jochen Wiedmann)
    DBD::mysql is a Perl module with MySQL driver for the Perl5 Database Interface (DBI).

    SYNOPSIS

    use DBI;

    $dsn = "DBI:

    PHP MySQL Database Layer Class 1.03 (by Stefan Gabos)
    PHP MySQL Database Layer Class is a php class providing some very useful methods to work with a mySQL database.

    Here are some key

    SQL Query Builder 1.2 (by David Regla Demaree)
    SQL Query Builder is a PHP 5 class that generates simple SQL queries (select, insert, update, and delete) that can be sent to an SQL


    Other software in this category

    db4o 8.0 (by Carl Rosenberger)
    db4o is designed to be a simple, easy-to-use, and fast, native object database

    MetaBoss 1.4.0001 (by metaboss)

    Sequoia 2.10.3 (by Emmanuel Cecchet)
    Sequoia is a transparent middleware solution for offering clustering, load balancing and failover services for any database

    PHP Generic Access Control List 3.3.7 (by IpSo)
    PHP Generic Access Control List is a PHP class that offers Web developers a simple, yet immensely powerful "drop in" permission syste

    phpDVD 1.0.4 (by Ugo Scarlata)
    phpDVD is a simple PHP script to keep track of your DVD collection

  •     search


    Featured Software

    jEdit 4.3 pre8
    jEdit is an Open Source text editor written in Java

    Opera 9.02
    Surf the Internet in a safer, faster, and easier way with Opera browser

    GNU Aspell 0.60.4
    GNU Aspell is a Free and Open Source spell checker designed to eventually replace Ispell


    Subscribe in Rojo
    Google Reader
    Add to My Yahoo!

    Add to My AOL
    Subscribe with Bloglines
    Subscribe in NewsGator Online
    Add 'nixbit linux software' to Newsburst from CNET News.com
    del.icio.us nixbit linux software


    Top tags