meta data for sqlite3.

Fix repeated executes when the entire rowset has not been consumed.
This commit is contained in:
Wez Furlong 2004-09-26 20:46:35 +00:00
parent eb0cd48d60
commit 486b426947
2 changed files with 71 additions and 1 deletions

View file

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