public enum SqlJetErrorCode extends java.lang.Enum<SqlJetErrorCode>
Enum Constant and Description |
---|
ABORT
Callback routine requested an abort
|
AUTH
Authorization denied
|
BAD_PARAMETER
Bad parameter value in function call wich impossible to execute
|
BUSY
The database file is locked
|
CANTOPEN
Unable to open the database file
|
CONSTRAINT
Abort due to constraint violation
|
CORRUPT
The database disk image is malformed
|
DONE |
EMPTY
Database is empty
|
ERROR
SQL error or missing database
|
FORMAT
Auxiliary database format error
|
FULL
Insertion failed because database is full
|
INTERNAL
Internal logic error in SQLite
|
INTERRUPT
Operation terminated by sqlite3_interrupt()
|
IOERR
Some kind of disk I/O error occurred
|
LOCKED
A table in the database is locked
|
MISMATCH
Data type mismatch
|
MISUSE
Library used incorrectly
|
NOLFS
Uses OS features not supported on host
|
NOMEM
A malloc() failed
|
NOTADB
File opened that is not a database file
|
NOTFOUND
NOT USED.
|
PERM
Internal logic error in SQLite
|
PROTOCOL
NOT USED.
|
RANGE
2nd parameter to sqlite3_bind out of range
|
READONLY
Attempt to write a readonly database
|
SCHEMA
The database schema changed
|
TOOBIG
String or BLOB exceeds size limit
|
Modifier and Type | Method and Description |
---|---|
static SqlJetErrorCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SqlJetErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlJetErrorCode ERROR
public static final SqlJetErrorCode INTERNAL
public static final SqlJetErrorCode PERM
public static final SqlJetErrorCode ABORT
public static final SqlJetErrorCode BUSY
public static final SqlJetErrorCode LOCKED
public static final SqlJetErrorCode NOMEM
public static final SqlJetErrorCode READONLY
public static final SqlJetErrorCode INTERRUPT
public static final SqlJetErrorCode IOERR
public static final SqlJetErrorCode CORRUPT
public static final SqlJetErrorCode NOTFOUND
public static final SqlJetErrorCode FULL
public static final SqlJetErrorCode CANTOPEN
public static final SqlJetErrorCode PROTOCOL
public static final SqlJetErrorCode EMPTY
public static final SqlJetErrorCode SCHEMA
public static final SqlJetErrorCode TOOBIG
public static final SqlJetErrorCode CONSTRAINT
public static final SqlJetErrorCode MISMATCH
public static final SqlJetErrorCode MISUSE
public static final SqlJetErrorCode NOLFS
public static final SqlJetErrorCode AUTH
public static final SqlJetErrorCode FORMAT
public static final SqlJetErrorCode RANGE
public static final SqlJetErrorCode NOTADB
public static final SqlJetErrorCode DONE
public static final SqlJetErrorCode BAD_PARAMETER
public static SqlJetErrorCode[] values()
for (SqlJetErrorCode c : SqlJetErrorCode.values()) System.out.println(c);
public static SqlJetErrorCode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2009-2010 TMate Software Ltd. All Rights Reserved.