SQLite
public final class SQLite
Summary
Constants |
|
|---|---|
static final int |
SQLITE_DATA_BLOB = 4The data type for a |
static final int |
The data type for a 64-bit IEEE floating point number. |
static final int |
The data type for a 64-bit signed integer. |
static final int |
SQLITE_DATA_NULL = 5The data type for a |
static final int |
SQLITE_DATA_TEXT = 3The data type for a |
Public methods |
|
|---|---|
static final void |
execSQL(@NonNull SQLiteConnection receiver, @NonNull String sql)Executes a single SQL statement that returns no values. |
static final @NonNull Void |
throwSQLiteException(int errorCode, String errorMsg)Throws a |
Constants
SQLITE_DATA_BLOB
public static final int SQLITE_DATA_BLOB = 4
The data type for a BLOB value, i.e. binary data.
SQLITE_DATA_FLOAT
public static final int SQLITE_DATA_FLOAT = 2
The data type for a 64-bit IEEE floating point number.
SQLITE_DATA_INTEGER
public static final int SQLITE_DATA_INTEGER = 1
The data type for a 64-bit signed integer.
Public methods
execSQL
public static final void execSQL(@NonNull SQLiteConnection receiver, @NonNull String sql)
Executes a single SQL statement that returns no values.
throwSQLiteException
public static final @NonNull Void throwSQLiteException(int errorCode, String errorMsg)
Throws a SQLiteException with its message formed by the given errorCode amd errorMsg.