SQLiteAsync
public final class SQLiteAsync
Summary
Public methods
executeSQL
public static final void executeSQL(@NonNull SQLiteConnection receiver, @NonNull String sql)
Executes a single SQL statement that returns no values.
On web targets this function is asynchronous while for non-web it is synchronous.
open
public static final @NonNull SQLiteConnection open(@NonNull SQLiteDriver receiver, @NonNull String fileName)
Opens a new database connection.
On web targets this function is asynchronous while for non-web it is synchronous.
prepare
public static final @NonNull SQLiteStatement prepare(@NonNull SQLiteConnection receiver, @NonNull String sql)
Prepares a new SQL statement.
On web targets this function is asynchronous while for non-web it is synchronous.
step
public static final boolean step(@NonNull SQLiteStatement receiver)
Executes the statement and evaluates the next result row if available.
On web targets this function is asynchronous while for non-web it is synchronous.
