diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c index 68eb1c050..2a63dfcae 100644 --- a/src/main.c +++ b/src/main.c @@ -14,7 +14,7 @@ ** other files are for internal use by SQLite and should not be ** accessed by users of the library. ** -** $Id: main.c,v 1.430 2008/04/01 15:06:34 drh Exp $ +** $Id: main.c,v 1.431 2008/04/03 16:28:25 danielk1977 Exp $ */ #include "sqliteInt.h" #include <ctype.h> @@ -1249,7 +1249,7 @@ int sqlite3_open16( SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, 0); assert( *ppDb || rc==SQLITE_NOMEM ); if( rc==SQLITE_OK ){ - rc = sqlite3_exec(*ppDb, "PRAGMA encoding = 'UTF-16'", 0, 0, 0); + ENC(*ppDb) = SQLITE_UTF16NATIVE; if( rc!=SQLITE_OK ){ sqlite3_close(*ppDb); *ppDb = 0; |