SQLite error code
SQLITE_WARNING
SQLITE_WARNING is SQLite result code 28.
| Result code | 28 |
|---|---|
| Name | SQLITE_WARNING |
| Primary code | SQLITE_WARNING |
What it means
The SQLITE_WARNING result code is not returned by any C/C++ interface. However, SQLITE_WARNING (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 and possibly ill-advised operation is taking place.
Source: SQLite Result and Error Codes