SupportSQLiteStatement

public interface SupportSQLiteStatement extends SupportSQLiteProgram


An interface to map the behavior of android.database.sqlite.SQLiteStatement.

Summary

Public methods

abstract void

Execute this SQL statement, if it is not a SELECT / INSERT / DELETE / UPDATE, for example CREATE / DROP table, view, trigger, index etc.

abstract long

Execute this SQL statement and return the ID of the row inserted due to this call.

abstract int

Execute this SQL statement, if the the number of rows affected by execution of this SQL statement is of any importance to the caller - for example, UPDATE / DELETE SQL statements.

abstract long

Execute a statement that returns a 1 by 1 table with a numeric value.

abstract String

Execute a statement that returns a 1 by 1 table with a text value.

Inherited methods

From java.io.Closeable
abstract void
From androidx.sqlite.db.SupportSQLiteProgram
abstract void
bindBlob(int index, @NonNull byte[] value)

Bind a byte array value to this statement.

abstract void
bindDouble(int index, double value)

Bind a double value to this statement.

abstract void
bindLong(int index, long value)

Bind a long value to this statement.

abstract void
bindNull(int index)

Bind a NULL value to this statement.

abstract void
bindString(int index, @NonNull String value)

Bind a String value to this statement.

abstract void

Clears all existing bindings.

Public methods

execute

Added in 2.0.0
abstract void execute()

Execute this SQL statement, if it is not a SELECT / INSERT / DELETE / UPDATE, for example CREATE / DROP table, view, trigger, index etc.

Throws
android.database.SQLException

If the SQL string is invalid for some reason

executeInsert

Added in 2.0.0
abstract long executeInsert()

Execute this SQL statement and return the ID of the row inserted due to this call. The SQL statement should be an INSERT for this to be a useful call.

Returns
long

the row ID of the last row inserted, if this insert is successful. -1 otherwise.

Throws
android.database.SQLException

If the SQL string is invalid for some reason

executeUpdateDelete

Added in 2.0.0
abstract int executeUpdateDelete()

Execute this SQL statement, if the the number of rows affected by execution of this SQL statement is of any importance to the caller - for example, UPDATE / DELETE SQL statements.

Returns
int

the number of rows affected by this SQL statement execution.

Throws
android.database.SQLException

If the SQL string is invalid for some reason

simpleQueryForLong

Added in 2.0.0
abstract long simpleQueryForLong()

Execute a statement that returns a 1 by 1 table with a numeric value. For example, SELECT COUNT(*) FROM table;

Returns
long

The result of the query.

Throws
android.database.sqlite.SQLiteDoneException

if the query returns zero rows

simpleQueryForString

Added in 2.0.0
abstract String simpleQueryForString()

Execute a statement that returns a 1 by 1 table with a text value. For example, SELECT COUNT(*) FROM table;

Returns
String

The result of the query.

Throws
android.database.sqlite.SQLiteDoneException

if the query returns zero rows