Home | History | Annotate | Download | only in tool

Lines Matching defs:utf16

5 ** It converts each SQL statement into UTF16 and submits it to SQLite
6 ** for evaluation. A new UTF16 database is created at the beginning of
67 void *utf16;
75 utf16 = asciiToUtf16le(zSql);
77 rc = sqlite3_prepare16_v2(db, utf16, -1, &pStmt, &stmtTail);
95 free(utf16);
99 void *utf16;
113 "Runs SQL-SCRIPT as UTF16 against a UTF16 database\n",
127 utf16 = asciiToUtf16le(argv[1]);
129 rc = sqlite3_open16(utf16, &db);
133 free(utf16);