1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-09 14:21:03 +03:00

Change the SQLITE_FCNTL_PRAGMA file-control so that it can return a string

value.

FossilOrigin-Name: fd8d7440277b17f57a6dc0a210f42adf1fa2dcd2
This commit is contained in:
drh
2012-02-22 16:58:36 +00:00
parent 06fd5d63a4
commit 3fa9730273
9 changed files with 58 additions and 29 deletions

View File

@@ -222,7 +222,7 @@ int sqlite3Dequote(char *z){
** definition of case independence that SQLite uses internally when
** comparing identifiers.
*/
int sqlite3StrICmp(const char *zLeft, const char *zRight){
int sqlite3_stricmp(const char *zLeft, const char *zRight){
register unsigned char *a, *b;
a = (unsigned char *)zLeft;
b = (unsigned char *)zRight;