dbd/sqlite3/dbd_sqlite3.h

changeset 1
408291a6eb3e
child 2
c4f02fc67e5a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dbd/sqlite3/dbd_sqlite3.h	Sun Nov 23 01:29:09 2008 +0000
@@ -0,0 +1,16 @@
+#include <sqlite3.h>
+#include <dbd/common.h>
+
+#define DBD_SQLITE_CONNECTION	"DBD.SQLite3.Connection"
+#define DBD_SQLITE_STATEMENT	"DBD.SQLite3.Statement"
+
+typedef struct _connection {
+    sqlite3 *sqlite;
+} connection_t;
+
+typedef struct _statement {
+    sqlite3_stmt *stmt;
+    sqlite3 *sqlite;
+    int more_data;
+} statement_t;
+

mercurial