1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-10-30 07:05:46 +03:00

Add pFetch variable (used by SSE) to sqlite3 structure. (CVS 2475)

FossilOrigin-Name: 2a8ac869671b627d4d01655bbce7a781bc74af44
This commit is contained in:
danielk1977
2005-05-23 04:51:01 +00:00
parent eb43e5c7b7
commit 7e900abf0a
4 changed files with 18 additions and 11 deletions

View File

@@ -11,7 +11,7 @@
*************************************************************************
** Internal interface definitions for SQLite.
**
** @(#) $Id: sqliteInt.h,v 1.380 2005/05/22 20:12:37 drh Exp $
** @(#) $Id: sqliteInt.h,v 1.381 2005/05/23 04:51:02 danielk1977 Exp $
*/
#ifndef _SQLITEINT_H_
#define _SQLITEINT_H_
@@ -464,6 +464,9 @@ struct sqlite3 {
Hash aCollSeq; /* All collating sequences */
BusyHandler busyHandler; /* Busy callback */
Db aDbStatic[2]; /* Static space for the 2 default backends */
#ifdef SQLITE_SSE
sqlite3_stmt *pFetch; /* Used by SSE to fetch stored statements */
#endif
};
/*