SQLite
Added in 2.5.0
public final class SQLite
Summary
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.
