SQLite error code
SQLITE_NOTICE
SQLITE_NOTICE is SQLite result code 27.
| Result code | 27 |
|---|---|
| Name | SQLITE_NOTICE |
| Primary code | SQLITE_NOTICE |
What it means
The SQLITE_NOTICE result code is not returned by any C/C++ interface. However, SQLITE_NOTICE (or rather one of its extended error codes) is sometimes used as the first argument in an sqlite3_log() callback to indicate that an unusual operation is taking place.
Source: SQLite Result and Error Codes