Searched refs:sqlite3ReportError (Results 1 – 4 of 4) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | main.c | 3718 int sqlite3ReportError(int iErr, int lineno, const char *zType){ in sqlite3ReportError() function 3725 return sqlite3ReportError(SQLITE_CORRUPT, lineno, "database corruption"); in sqlite3CorruptError() 3729 return sqlite3ReportError(SQLITE_MISUSE, lineno, "misuse"); in sqlite3MisuseError() 3733 return sqlite3ReportError(SQLITE_CANTOPEN, lineno, "cannot open file"); in sqlite3CantopenError() 3740 return sqlite3ReportError(SQLITE_CORRUPT, lineno, zMsg); in sqlite3CorruptPgnoError() 3746 return sqlite3ReportError(SQLITE_NOMEM, lineno, "OOM"); in sqlite3NomemError() 3750 return sqlite3ReportError(SQLITE_IOERR_NOMEM, lineno, "I/O OOM error"); in sqlite3IoerrnomemError()
|
| H A D | sqliteInt.h | 4310 int sqlite3ReportError(int iErr, int lineno, const char *zType);
|
| H A D | vdbe.c | 6382 rc = sqlite3ReportError(SQLITE_CORRUPT_INDEX, __LINE__, "index corruption"); in sqlite3VdbeExec()
|
| H A D | btree.c | 144 sqlite3ReportError(SQLITE_CORRUPT, lineno, zMsg); in corruptPageError()
|