Searched refs:SQLITE_IGNORE (Results 1 – 10 of 10) sorted by relevance
/external/javasqlite/src/main/java/SQLite/ |
D | Constants.java | 104 … public static final int SQLITE_IGNORE = 2; /* Don't allow access, but don't generate an error */ field in Constants
|
/external/python/cpython2/Modules/_sqlite/ |
D | module.c | 267 {"SQLITE_IGNORE", SQLITE_IGNORE},
|
/external/python/cpython3/Modules/_sqlite/ |
D | module.c | 280 {"SQLITE_IGNORE", SQLITE_IGNORE},
|
/external/sqlite/dist/ |
D | sqlite3.h | 2855 #define SQLITE_IGNORE 2 /* Don't allow access, but don't generate an error */ macro
|
D | sqlite3.c | 3879 #define SQLITE_IGNORE 2 /* Don't allow access, but don't generate an error */ macro 101485 }else if( rc!=SQLITE_IGNORE && rc!=SQLITE_OK ){ 101546 if( SQLITE_IGNORE==sqlite3AuthReadCol(pParse, pTab->zName, zCol, iDb) ){ 101597 }else if( rc!=SQLITE_OK && rc!=SQLITE_IGNORE ){ 106902 assert( rcauth==SQLITE_OK || rcauth==SQLITE_DENY || rcauth==SQLITE_IGNORE ); 110376 bIgnore = (rcauth==SQLITE_IGNORE); 126366 }else if( rc==SQLITE_IGNORE ){ 128571 SQLITE_ROLLBACK, SQLITE_ABORT, SQLITE_FAIL, SQLITE_IGNORE, SQLITE_REPLACE
|
/external/sqlite/dist/orig/ |
D | sqlite3.h | 2855 #define SQLITE_IGNORE 2 /* Don't allow access, but don't generate an error */ macro
|
D | sqlite3.c | 3879 #define SQLITE_IGNORE 2 /* Don't allow access, but don't generate an error */ macro 101469 }else if( rc!=SQLITE_IGNORE && rc!=SQLITE_OK ){ 101530 if( SQLITE_IGNORE==sqlite3AuthReadCol(pParse, pTab->zName, zCol, iDb) ){ 101581 }else if( rc!=SQLITE_OK && rc!=SQLITE_IGNORE ){ 106886 assert( rcauth==SQLITE_OK || rcauth==SQLITE_DENY || rcauth==SQLITE_IGNORE ); 110360 bIgnore = (rcauth==SQLITE_IGNORE); 126350 }else if( rc==SQLITE_IGNORE ){ 128555 SQLITE_ROLLBACK, SQLITE_ABORT, SQLITE_FAIL, SQLITE_IGNORE, SQLITE_REPLACE
|
/external/python/cpython2/Doc/library/ |
D | sqlite3.rst | 366 statement should be aborted with an error and :const:`SQLITE_IGNORE` if the
|
/external/python/cpython3/Doc/library/ |
D | sqlite3.rst | 405 statement should be aborted with an error and :const:`SQLITE_IGNORE` if the
|
/external/javasqlite/src/main/native/ |
D | sqlite_jni.c | 2352 if (i != SQLITE_OK && i != SQLITE_IGNORE) { in doauth()
|