public class

SQLiteStatement

extends SQLiteProgram
java.lang.Object
   ↳ android.database.sqlite.SQLiteClosable
     ↳ android.database.sqlite.SQLiteProgram
       ↳ android.database.sqlite.SQLiteStatement

Class Overview

A pre-compiled statement against a SQLiteDatabase that can be reused. The statement cannot return multiple rows, but 1x1 result sets are allowed. Don't use SQLiteStatement constructor directly, please use compileStatement(String) SQLiteStatement is not internally synchronized so code using a SQLiteStatement from multiple threads should perform its own synchronization when using the SQLiteStatement.

Summary

[Expand]
Inherited Fields
From class android.database.sqlite.SQLiteProgram
Public Methods
void execute()
Execute this SQL statement, if it is not a query.
long executeInsert()
Execute this SQL statement and return the ID of the row inserted due to this call.
long simpleQueryForLong()
Execute a statement that returns a 1 by 1 table with a numeric value.
String simpleQueryForString()
Execute a statement that returns a 1 by 1 table with a text value.
[Expand]
Inherited Methods
From class android.database.sqlite.SQLiteProgram
From class android.database.sqlite.SQLiteClosable
From class java.lang.Object

Public Methods

public void execute ()

Since: API Level 1

Execute this SQL statement, if it is not a query. For example, CREATE TABLE, DELTE, INSERT, etc.

Throws
SQLException If the SQL string is invalid for some reason

public long executeInsert ()

Since: API Level 1

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
  • the row ID of the last row inserted, if this insert is successful. -1 otherwise.
Throws
SQLException If the SQL string is invalid for some reason

public long simpleQueryForLong ()

Since: API Level 1

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

Returns
  • The result of the query.
Throws
SQLiteDoneException if the query returns zero rows

public String simpleQueryForString ()

Since: API Level 1

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

Returns
  • The result of the query.
Throws
SQLiteDoneException if the query returns zero rows