diff options
author | dan <dan@noemail.net> | 2011-04-22 19:37:32 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2011-04-22 19:37:32 +0000 |
commit | cd74b611f4a36335e864f02f6be3e34dc39f711c (patch) | |
tree | 5f424307a796789cf7893c26b419ca91dc87c9ad /src/global.c | |
parent | fc083ab9731a59ceeece88453a097297260d414e (diff) | |
download | sqlite-cd74b611f4a36335e864f02f6be3e34dc39f711c.tar.gz sqlite-cd74b611f4a36335e864f02f6be3e34dc39f711c.zip |
Add the start of the "uri-filenames" feature.
FossilOrigin-Name: b8a8132e7148a7c90ca1352f20ab71d97b0bc4b0
Diffstat (limited to 'src/global.c')
-rw-r--r-- | src/global.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/global.c b/src/global.c index 0c890684d..f01eaa8f4 100644 --- a/src/global.c +++ b/src/global.c @@ -129,7 +129,9 @@ const unsigned char sqlite3CtypeMap[256] = { }; #endif - +#ifndef SQLITE_USE_URI +# define SQLITE_USE_URI 0 +#endif /* ** The following singleton contains the global configuration for @@ -139,6 +141,7 @@ SQLITE_WSD struct Sqlite3Config sqlite3Config = { SQLITE_DEFAULT_MEMSTATUS, /* bMemstat */ 1, /* bCoreMutex */ SQLITE_THREADSAFE==1, /* bFullMutex */ + SQLITE_USE_URI, /* bOpenUri */ 0x7ffffffe, /* mxStrlen */ 100, /* szLookaside */ 500, /* nLookaside */ |