summaryrefslogtreecommitdiff
path: root/ext/pdo_sqlite/php_pdo_sqlite_int.h
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2004-09-26 20:46:35 +0000
committerWez Furlong <wez@php.net>2004-09-26 20:46:35 +0000
commit486b4269475509161fd52877df03b9a725652e6c (patch)
tree67b32b2c95cdeaac6434c20df54bc895cc5f0d8f /ext/pdo_sqlite/php_pdo_sqlite_int.h
parenteb0cd48d6012d43231ec3d38a79dcf941e180002 (diff)
downloadphp-git-486b4269475509161fd52877df03b9a725652e6c.tar.gz
meta data for sqlite3.
Fix repeated executes when the entire rowset has not been consumed.
Diffstat (limited to 'ext/pdo_sqlite/php_pdo_sqlite_int.h')
-rw-r--r--ext/pdo_sqlite/php_pdo_sqlite_int.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/pdo_sqlite/php_pdo_sqlite_int.h b/ext/pdo_sqlite/php_pdo_sqlite_int.h
index 7e2a5ef17e..ee57fa378c 100644
--- a/ext/pdo_sqlite/php_pdo_sqlite_int.h
+++ b/ext/pdo_sqlite/php_pdo_sqlite_int.h
@@ -39,6 +39,7 @@ typedef struct {
pdo_sqlite_db_handle *H;
sqlite3_stmt *stmt;
unsigned pre_fetched:1;
+ unsigned done:1;
} pdo_sqlite_stmt;
extern pdo_driver_t pdo_sqlite_driver;