SqlError class final

Common result codes, https://www.sqlite.org/rescode.html Result Codes

Many SQLite functions return an integer result code from the set shown here in order to indicates success or failure.

New error codes may be added in future versions of SQLite.

See also: SQLITE_IOERR_READ | extended result codes, sqlite3_vtab_on_conflictstatic const int ) SQLITE_ROLLBACK | result codes.

Constructors

SqlError()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

SQLITE_ABORT → const int
Callback routine requested an abort
SQLITE_AUTH → const int
Authorization denied
SQLITE_BUSY → const int
The database file is locked
SQLITE_CANTOPEN → const int
Unable to open the database file
SQLITE_CONSTRAINT → const int
Abort due to constraint violation
SQLITE_CORRUPT → const int
The database disk image is malformed
SQLITE_DONE → const int
sqlite3_stepstatic const int ) has finished executing
SQLITE_EMPTY → const int
Internal use only
SQLITE_ERROR → const int
Generic error
SQLITE_FORMAT → const int
Not used
SQLITE_FULL → const int
Insertion failed because database is full
SQLITE_INTERNAL → const int
Internal logic error in SQLite
SQLITE_INTERRUPT → const int
Operation terminated by sqlite3_interruptstatic const int )
SQLITE_IOERR → const int
Some kind of disk I/O error occurred
SQLITE_LOCKED → const int
A table in the database is locked
SQLITE_MISMATCH → const int
Data type mismatch
SQLITE_MISUSE → const int
Library used incorrectly
SQLITE_NOLFS → const int
Uses OS features not supported on host
SQLITE_NOMEM → const int
A mallocstatic const int ) failed
SQLITE_NOTADB → const int
File opened that is not a database file
SQLITE_NOTFOUND → const int
Unknown opcode in sqlite3_file_controlstatic const int )
SQLITE_NOTICE → const int
Notifications from sqlite3_logstatic const int )
SQLITE_OK → const int
Successful result
SQLITE_PERM → const int
Access permission denied
SQLITE_PROTOCOL → const int
Database lock protocol error
SQLITE_RANGE → const int
2nd parameter to sqlite3_bind out of range
SQLITE_READONLY → const int
Attempt to write a readonly database
SQLITE_ROW → const int
sqlite3_stepstatic const int ) has another row ready
SQLITE_SCHEMA → const int
The database schema changed
SQLITE_TOOBIG → const int
String or BLOB exceeds size limit
SQLITE_WARNING → const int
Warnings from sqlite3_logstatic const int )