const TInt | KSqlLastInsertedRowId |
Used to specify that the ROWID of the most recently inserted record from the specified database connection should be used as the ROWID in a call to directly access a blob.
const TInt | KSqlAtRow |
An information type return code from a call to RSqlStatement::Next().
It means that the RSqlStatement object points to a valid row, and that the user can access the column data using the appropriate RSqlStatement member functions.
const TInt | KSqlAtEnd |
An information type return code from a call to RSqlStatement::Next().
It means that the RSqlStatement object does not point to a valid row, and that column data accessors cannot be used.
const TInt | KSqlErrGeneral |
An SQL database-specific error type return code from a call to the SQL API.
It indicates a general SQL error or a missing database.
const TInt | KSqlErrInternal |
An SQL database-specific error type return code from a call to the SQL API.
It indicates an internal logic error in the SQL database engine, and specifically that an internal consistency check within the SQL database engine has failed.
const TInt | KSqlErrPermission |
An SQL database-specific error type return code from a call to the SQL API.
It indicates that access permission has been denied.
const TInt | KSqlErrAbort |
An SQL database-specific error type return code from a call to the SQL API.
It indicates an internal logic error in the SQL database engine, and specifically that a callback routine requested an abort.
const TInt | KSqlErrBusy |
An SQL database-specific error type return code from a call to the SQL API.
It indicates that the database file is locked.
const TInt | KSqlErrLocked |
An SQL database-specific error type return code from a call to the SQL API.
It indicates that a table in the database is locked.
const TInt | KSqlErrReadOnly |
An SQL database-specific error type return code from a call to the SQL API.
It indicates an attempt to write to a database that is read-only.
const TInt | KSqlErrInterrupt |
SQL database-specific error type. Operation terminated.
const TInt | KSqlErrIO |
An SQL database-specific error type return code from a call to the SQL API.
It indicates that a disk I/O error has occurred.
const TInt | KSqlErrCorrupt |
An SQL database-specific error type return code from a call to the SQL API.
It indicates that the database disk image is malformed.
const TInt | KSqlErrNotFound |
SQL database-specific error type. Table or record not found.
const TInt | KSqlErrFull |
An SQL database-specific error type return code from a call to the SQL API.
It indicates that an insertion operation has failed because an autoincrement column used up all awailable rowids.
const TInt | KSqlErrCantOpen |
An SQL database-specific error type return code from a call to the SQL API.
It indicates a failure to open the database file.
const TInt | KSqlErrProtocol |
An SQL database-specific error type return code from a call to the SQL API.
It indicates a database lock protocol error.
const TInt | KSqlErrEmpty |
An SQL database-specific error type return code from a call to the SQL API.
It indicates that the database is empty.
const TInt | KSqlErrSchema |
An SQL database-specific error type return code from a call to the SQL API.
It indicates that a prepared SQL statement is no longer valid and cannot be executed.
The most common reason for this return code is that the database schema was modified after the SQL statement was prepared. The SQL statement must be prepared again using the RSqlStatement::Prepare() member functions.
Another possible reason for this return code is a detached database.
const TInt | KSqlErrTooBig |
SQL database-specific error type. Too much data for one row.
const TInt | KSqlErrConstraint |
An SQL database-specific error type return code from a call to the SQL API.
It indicates an abort due to constraint violation.
"Constraint violation" means violation of one or more column constraints ("NOT NULL", "PRIMARY KEY", "UNIQUE", "CHECK", "DEFAULT", "COLLATE" SQL keywords) or table constraints ("PRIMARY KEY", "UNIQUE", "CHECK" SQL keywords).
const TInt | KSqlErrMismatch |
An SQL database-specific error type return code from a call to the SQL API.
It indicates a data type mismatch.
const TInt | KSqlErrMisuse |
An SQL database-specific error type return code from a call to the SQL API.
It indicates an internal logic error in the SQL database engine.
const TInt | KSqlErrRange |
An SQL database-specific error type return code from a call to the SQL API.
It indicates that a parameter index value is out of range.
const TInt | KSqlErrNotDb |
An SQL database-specific error type return code from a call to the SQL API.
It indicates that the file that has been opened is not a database file.
const TInt | KSqlErrStmtExpired |
An SQL database-specific error type return code from a call to the SQL API.
It indicates that an SQL statement has expired, and needs to be prepared again.