dbd/sqlite3/dbd_sqlite3.h

Fri, 19 Dec 2008 09:17:16 +0000

author
nrich@ii.net
date
Fri, 19 Dec 2008 09:17:16 +0000
changeset 21
7956401a0c5e
parent 13
10c8c6f0da14
child 41
e490414a391d
permissions
-rw-r--r--

Added the statement:affected() and statement:rowcount() methods.

#include <sqlite3.h>
#include <dbd/common.h>

#define DBD_SQLITE_CONNECTION	"DBD.SQLite3.Connection"
#define DBD_SQLITE_STATEMENT	"DBD.SQLite3.Statement"

/*
 * connection object
 */
typedef struct _connection {
    sqlite3 *sqlite;
    int autocommit;
} connection_t;

/*
 * statement object
 */
typedef struct _statement {
    sqlite3_stmt *stmt;
    sqlite3 *sqlite;
    int more_data;
    int affected;
} statement_t;

mercurial