diff options
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index f4e6999dc..93bf92262 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.168 2003/03/31 02:12:48 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.169 2003/03/31 13:36:09 drh Exp $ */ #include "config.h" #include "sqlite.h" @@ -58,6 +58,14 @@ #define NULL_DISTINCT_FOR_UNIQUE 1 /* +** The maximum number of attached databases. This must be at least 2 +** in order to support the main database file (0) and the file used to +** hold temporary tables (1). And it must be less than 256 because the +** an unsigned character is used to stored the database index. +*/ +#define MAX_ATTACHED 10 + +/* ** Integers of known sizes. These typedefs might change for architectures ** where the sizes very. Preprocessor macros are available so that the ** types can be conveniently redefined at compile-type. Like this: |