diff options
author | danielk1977 <danielk1977@noemail.net> | 2007-05-04 18:36:44 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2007-05-04 18:36:44 +0000 |
commit | dcbb5d3f47ba93aa0a2d6d008eef2ca141d3175b (patch) | |
tree | 0c3ecde66e7d16ddd403816c3b0a1ec6b0723bac /src/tclsqlite.c | |
parent | ca5557f91d1a38800eea2742dc7bc2012887f83a (diff) | |
download | sqlite-dcbb5d3f47ba93aa0a2d6d008eef2ca141d3175b.tar.gz sqlite-dcbb5d3f47ba93aa0a2d6d008eef2ca141d3175b.zip |
Test interaction of incremental io and other database writes. (CVS 3922)
FossilOrigin-Name: 4516416b4d38679ea7d259155f241e54c4c58d7d
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r-- | src/tclsqlite.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c index 7e6f32700..3d7ff9444 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -12,7 +12,7 @@ ** A TCL Interface to SQLite. Append this file to sqlite3.c and ** compile the whole thing to build a TCL-enabled version of SQLite. ** -** $Id: tclsqlite.c,v 1.184 2007/05/04 13:15:56 drh Exp $ +** $Id: tclsqlite.c,v 1.185 2007/05/04 18:36:45 danielk1977 Exp $ */ #include "tcl.h" #include <errno.h> @@ -120,10 +120,9 @@ struct SqliteDb { }; struct IncrblobChannel { - SqliteDb *pDb; /* Associated database connection */ sqlite3_blob *pBlob; /* sqlite3 blob handle */ + SqliteDb *pDb; /* Associated database connection */ int iSeek; /* Current seek offset */ - Tcl_Channel channel; /* Channel identifier */ IncrblobChannel *pNext; /* Linked list of all open incrblob channels */ IncrblobChannel *pPrev; /* Linked list of all open incrblob channels */ |