diff options
author | drh <drh@noemail.net> | 2001-10-19 16:44:56 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2001-10-19 16:44:56 +0000 |
commit | 6a535340bc31d7178cd8422a09a7ef144bf9ea4d (patch) | |
tree | ee6a560a5f8c485b669f32a1b6c9bcc0f6ce2adb /src/sqliteInt.h | |
parent | 98808babd3efdc2bb3b8b0884eda76abe6e32477 (diff) | |
download | sqlite-6a535340bc31d7178cd8422a09a7ef144bf9ea4d.tar.gz sqlite-6a535340bc31d7178cd8422a09a7ef144bf9ea4d.zip |
Version 2.0.6 (CVS 291)
FossilOrigin-Name: 8467d84fc6e67bd93051f54338a8f6c9b1711ee1
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 92d01724b..8054316ec 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.63 2001/10/18 12:34:47 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.64 2001/10/19 16:44:57 drh Exp $ */ #include "sqlite.h" #include "hash.h" @@ -166,6 +166,8 @@ struct sqlite { #define SQLITE_CountRows 0x00000040 /* Count rows changed by INSERT, */ /* DELETE, or UPDATE and return */ /* the count using a callback. */ +#define SQLITE_NullCallback 0x00000080 /* Invoke the callback once if the */ + /* result set is empty */ /* ** Current file format version |