-
public final class SQLiteSession
Provides a single client the ability to use a database.
About database sessionsDatabase access is always performed using a session. The session manages the lifecycle of transactions and database connections.
Sessions can be used to perform both read-only and read-write operations. There is some advantage to knowing when a session is being used for read-only purposes because the connection pool can optimize the use of the available connections to permit multiple read-only operations to execute in parallel whereas read-write operations may need to be serialized.
When Write Ahead Logging (WAL) is enabled, the database can execute simultaneous read-only and read-write transactions, provided that at most one read-write transaction is performed at a time. When WAL is not enabled, read-only transactions can execute in parallel but read-write transactions are mutually exclusive.
Ownership and concurrency guaranteesSession objects are not thread-safe. In fact, session objects are thread-bound. The SQLiteDatabase uses a thread-local variable to associate a session with each thread for the use of that thread alone. Consequently, each thread has its own session object and therefore its own transaction state independent of other threads.
A thread has at most one session per database. This constraint ensures that a thread can never use more than one database connection at a time for a given database. As the number of available database connections is limited, if a single thread tried to acquire multiple connections for the same database at the same time, it might deadlock. Therefore we allow there to be only one session (so, at most one connection) per thread per database.
TransactionsThere are two kinds of transaction: implicit transactions and explicit transactions.
An implicit transaction is created whenever a database operation is requested and there is no explicit transaction currently in progress. An implicit transaction only lasts for the duration of the database operation in question and then it is ended. If the database operation was successful, then its changes are committed.
An explicit transaction is started by calling beginTransaction and specifying the desired transaction mode. Once an explicit transaction has begun, all subsequent database operations will be performed as part of that transaction. To end an explicit transaction, first call setTransactionSuccessful if the transaction was successful, then call end. If the transaction was marked successful, its changes will be committed, otherwise they will be rolled back.
Explicit transactions can also be nested. A nested explicit transaction is started with beginTransaction, marked successful with setTransactionSuccessfuland ended with endTransaction. If any nested transaction is not marked successful, then the entire transaction including all of its nested transactions will be rolled back when the outermost transaction is ended.
To improve concurrency, an explicit transaction can be yielded by calling yieldTransaction. If there is contention for use of the database, then yielding ends the current transaction, commits its changes, releases the database connection for use by another session for a little while, and starts a new transaction with the same properties as the original one. Changes committed by yieldTransaction cannot be rolled back.
When a transaction is started, the client can provide a SQLiteTransactionListener to listen for notifications of transaction-related events.
Recommended usage:
Database connections// First, begin the transaction. session.beginTransaction(SQLiteSession.TRANSACTION_MODE_DEFERRED, 0); try { // Then do stuff... session.execute("INSERT INTO ...", null, 0); // As the very last step before ending the transaction, mark it successful. session.setTransactionSuccessful(); } finally { // Finally, end the transaction. // This statement will commit the transaction if it was marked successful or // roll it back otherwise. session.endTransaction(); }
A SQLiteDatabase can have multiple active sessions at the same time. Each session acquires and releases connections to the database as needed to perform each requested database transaction. If all connections are in use, then database transactions on some sessions will block until a connection becomes available.
The session acquires a single database connection only for the duration of a single (implicit or explicit) database transaction, then releases it. This characteristic allows a small pool of database connections to be shared efficiently by multiple sessions as long as they are not all trying to perform database transactions at the same time.
ResponsivenessBecause there are a limited number of database connections and the session holds a database connection for the entire duration of a database transaction, it is important to keep transactions short. This is especially important for read-write transactions since they may block other transactions from executing. Consider calling yieldTransaction periodically during long-running transactions.
Another important consideration is that transactions that take too long to run may cause the application UI to become unresponsive. Even if the transaction is executed in a background thread, the user will get bored and frustrated if the application shows no data for several seconds while a transaction runs.
Guidelines:
- Do not perform database transactions on the UI thread.
- Keep database transactions as short as possible.
- Simple queries often run faster than complex queries.
- Measure the performance of your database transactions.
- Consider what will happen when the size of the data set grows. A query that works well on 100 rows may struggle with 10,000.
This class must tolerate reentrant execution of SQLite operations because triggers may call custom SQLite functions that perform additional queries.
-
-
Field Summary
Fields Modifier and Type Field Description public final static int
TRANSACTION_MODE_DEFERRED
public final static int
TRANSACTION_MODE_IMMEDIATE
public final static int
TRANSACTION_MODE_EXCLUSIVE
-
Constructor Summary
Constructors Constructor Description SQLiteSession(SQLiteConnectionPool connectionPool)
Creates a session bound to the specified connection pool.
-
Method Summary
Modifier and Type Method Description boolean
hasTransaction()
Returns true if the session has a transaction in progress. boolean
hasNestedTransaction()
Returns true if the session has a nested transaction in progress. boolean
hasConnection()
Returns true if the session has an active database connection. void
beginTransaction(int transactionMode, SQLiteTransactionListener transactionListener, int connectionFlags, CancellationSignal cancellationSignal)
Begins a transaction. void
setTransactionSuccessful()
Marks the current transaction as having completed successfully. void
endTransaction(CancellationSignal cancellationSignal)
Ends the current transaction and commits or rolls back changes. boolean
yieldTransaction(long sleepAfterYieldDelayMillis, boolean throwIfUnsafe, CancellationSignal cancellationSignal)
Temporarily ends a transaction to let other threads have use ofthe database. void
prepare(String sql, int connectionFlags, CancellationSignal cancellationSignal, SQLiteStatementInfo outStatementInfo)
Prepares a statement for execution but does not bind its parameters or execute it. void
execute(String sql, Array<Object> bindArgs, int connectionFlags, CancellationSignal cancellationSignal)
Executes a statement that does not return a result. long
executeForLong(String sql, Array<Object> bindArgs, int connectionFlags, CancellationSignal cancellationSignal)
Executes a statement that returns a single long
result.String
executeForString(String sql, Array<Object> bindArgs, int connectionFlags, CancellationSignal cancellationSignal)
Executes a statement that returns a single String result. ParcelFileDescriptor
executeForBlobFileDescriptor(String sql, Array<Object> bindArgs, int connectionFlags, CancellationSignal cancellationSignal)
Executes a statement that returns a single BLOB result as afile descriptor to a shared memory region. int
executeForChangedRowCount(String sql, Array<Object> bindArgs, int connectionFlags, CancellationSignal cancellationSignal)
Executes a statement that returns a count of the number of rowsthat were changed. void
executeRaw(String sql, Array<Object> bindArgs, int connectionFlags, CancellationSignal cancellationSignal)
Executes a statement that returns a count of the number of rowsthat were changed. long
executeForLastInsertedRowId(String sql, Array<Object> bindArgs, int connectionFlags, CancellationSignal cancellationSignal)
Executes a statement that returns the row id of the last row insertedby the statement. int
executeForCursorWindow(String sql, Array<Object> bindArgs, CursorWindow window, int startPos, int requiredPos, boolean countAllRows, int connectionFlags, CancellationSignal cancellationSignal)
Executes a statement and populates the specified CursorWindow with a range of results. -
-
Constructor Detail
-
SQLiteSession
SQLiteSession(SQLiteConnectionPool connectionPool)
Creates a session bound to the specified connection pool.- Parameters:
connectionPool
- The connection pool.
-
-
Method Detail
-
hasTransaction
boolean hasTransaction()
Returns true if the session has a transaction in progress.
-
hasNestedTransaction
boolean hasNestedTransaction()
Returns true if the session has a nested transaction in progress.
-
hasConnection
boolean hasConnection()
Returns true if the session has an active database connection.
-
beginTransaction
void beginTransaction(int transactionMode, SQLiteTransactionListener transactionListener, int connectionFlags, CancellationSignal cancellationSignal)
Begins a transaction.
Transactions may nest. If the transaction is not in progress,then a database connection is obtained and a new transaction is started.Otherwise, a nested transaction is started.
Each call to beginTransaction must be matched exactly by a callto endTransaction. To mark a transaction as successful,call setTransactionSuccessful before calling endTransaction.If the transaction is not successful, or if any of its nestedtransactions were not successful, then the entire transaction willbe rolled back when the outermost transaction is ended.
- Parameters:
transactionMode
- The transaction mode.transactionListener
- The transaction listener, or null if none.connectionFlags
- The connection flags to use if a connection must beacquired by this operation.cancellationSignal
- A signal to cancel the operation in progress, or null if none.
-
setTransactionSuccessful
void setTransactionSuccessful()
Marks the current transaction as having completed successfully.
This method can be called at most once between beginTransaction and endTransaction to indicate that the changes made by the transaction should becommitted. If this method is not called, the changes will be rolled backwhen the transaction is ended.
-
endTransaction
void endTransaction(CancellationSignal cancellationSignal)
Ends the current transaction and commits or rolls back changes.
If this is the outermost transaction (not nested within any othertransaction), then the changes are committed if setTransactionSuccessful was called or rolled back otherwise.
This method must be called exactly once for each call to beginTransaction.
- Parameters:
cancellationSignal
- A signal to cancel the operation in progress, or null if none.
-
yieldTransaction
boolean yieldTransaction(long sleepAfterYieldDelayMillis, boolean throwIfUnsafe, CancellationSignal cancellationSignal)
Temporarily ends a transaction to let other threads have use ofthe database. Begins a new transaction after a specified delay.
If there are other threads waiting to acquire connections,then the current transaction is committed and the databaseconnection is released. After a short delay, a new transactionis started.
The transaction is assumed to be successful so far. Do not call setTransactionSuccessful before calling this method.This method will fail if the transaction has already been markedsuccessful.
The changes that were committed by a yield cannot be rolled back later.
Before this method was called, there must already have beena transaction in progress. When this method returns, there willstill be a transaction in progress, either the same one as beforeor a new one if the transaction was actually yielded.
This method should not be called when there is a nested transactionin progress because it is not possible to yield a nested transaction.If
throwIfNested
is true, then attempting to yielda nested transaction will throw IllegalStateException, otherwisethe method will returnfalse
in that case.If there is no nested transaction in progress but a previous nestedtransaction failed, then the transaction is not yielded (because itmust be rolled back) and this method returns
false
.- Parameters:
sleepAfterYieldDelayMillis
- A delay time to wait after yieldingthe database connection to allow other threads some time to run.If the value is less than or equal to zero, there will be no additionaldelay beyond the time it will take to begin a new transaction.throwIfUnsafe
- If true, then instead of returning false when notransaction is in progress, a nested transaction is in progress, or whenthe transaction has already been marked successful, throws IllegalStateException.cancellationSignal
- A signal to cancel the operation in progress, or null if none.
-
prepare
void prepare(String sql, int connectionFlags, CancellationSignal cancellationSignal, SQLiteStatementInfo outStatementInfo)
Prepares a statement for execution but does not bind its parameters or execute it.
This method can be used to check for syntax errors during compilationprior to execution of the statement. If the
{@code outStatementInfo}
argumentis not null, the provided SQLiteStatementInfo object is populatedwith information about the statement.A prepared statement makes no reference to the arguments that may eventuallybe bound to it, consequently it it possible to cache certain prepared statementssuch as SELECT or INSERT/UPDATE statements. If the statement is cacheable,then it will be stored in the cache for later and reused if possible.
- Parameters:
sql
- The SQL statement to prepare.connectionFlags
- The connection flags to use if a connection must beacquired by this operation.cancellationSignal
- A signal to cancel the operation in progress, or null if none.outStatementInfo
- The SQLiteStatementInfo object to populatewith information about the statement, or null if none.
-
execute
void execute(String sql, Array<Object> bindArgs, int connectionFlags, CancellationSignal cancellationSignal)
Executes a statement that does not return a result.
- Parameters:
sql
- The SQL statement to execute.bindArgs
- The arguments to bind, or null if none.connectionFlags
- The connection flags to use if a connection must beacquired by this operation.cancellationSignal
- A signal to cancel the operation in progress, or null if none.
-
executeForLong
long executeForLong(String sql, Array<Object> bindArgs, int connectionFlags, CancellationSignal cancellationSignal)
Executes a statement that returns a single
long
result.- Parameters:
sql
- The SQL statement to execute.bindArgs
- The arguments to bind, or null if none.connectionFlags
- The connection flags to use if a connection must beacquired by this operation.cancellationSignal
- A signal to cancel the operation in progress, or null if none.
-
executeForString
String executeForString(String sql, Array<Object> bindArgs, int connectionFlags, CancellationSignal cancellationSignal)
Executes a statement that returns a single String result.
- Parameters:
sql
- The SQL statement to execute.bindArgs
- The arguments to bind, or null if none.connectionFlags
- The connection flags to use if a connection must beacquired by this operation.cancellationSignal
- A signal to cancel the operation in progress, or null if none.
-
executeForBlobFileDescriptor
ParcelFileDescriptor executeForBlobFileDescriptor(String sql, Array<Object> bindArgs, int connectionFlags, CancellationSignal cancellationSignal)
Executes a statement that returns a single BLOB result as afile descriptor to a shared memory region.
- Parameters:
sql
- The SQL statement to execute.bindArgs
- The arguments to bind, or null if none.connectionFlags
- The connection flags to use if a connection must beacquired by this operation.cancellationSignal
- A signal to cancel the operation in progress, or null if none.
-
executeForChangedRowCount
int executeForChangedRowCount(String sql, Array<Object> bindArgs, int connectionFlags, CancellationSignal cancellationSignal)
Executes a statement that returns a count of the number of rowsthat were changed. Use for UPDATE or DELETE SQL statements.
- Parameters:
sql
- The SQL statement to execute.bindArgs
- The arguments to bind, or null if none.connectionFlags
- The connection flags to use if a connection must beacquired by this operation.cancellationSignal
- A signal to cancel the operation in progress, or null if none.
-
executeRaw
void executeRaw(String sql, Array<Object> bindArgs, int connectionFlags, CancellationSignal cancellationSignal)
Executes a statement that returns a count of the number of rowsthat were changed. Use for UPDATE or DELETE SQL statements. Does notperform additional transaction process verification.
- Parameters:
sql
- The SQL statement to execute.bindArgs
- The arguments to bind, or null if none.connectionFlags
- The connection flags to use if a connection must beacquired by this operation.cancellationSignal
- A signal to cancel the operation in progress, or null if none.
-
executeForLastInsertedRowId
long executeForLastInsertedRowId(String sql, Array<Object> bindArgs, int connectionFlags, CancellationSignal cancellationSignal)
Executes a statement that returns the row id of the last row insertedby the statement. Use for INSERT SQL statements.
- Parameters:
sql
- The SQL statement to execute.bindArgs
- The arguments to bind, or null if none.connectionFlags
- The connection flags to use if a connection must beacquired by this operation.cancellationSignal
- A signal to cancel the operation in progress, or null if none.
-
executeForCursorWindow
int executeForCursorWindow(String sql, Array<Object> bindArgs, CursorWindow window, int startPos, int requiredPos, boolean countAllRows, int connectionFlags, CancellationSignal cancellationSignal)
Executes a statement and populates the specified CursorWindow with a range of results. Returns the number of rows that were countedduring query execution.
- Parameters:
sql
- The SQL statement to execute.bindArgs
- The arguments to bind, or null if none.window
- The cursor window to clear and fill.startPos
- The start position for filling the window.requiredPos
- The position of a row that MUST be in the window.If it won't fit, then the query should discard part of what it filledso that it does.countAllRows
- True to count all rows that the query would returnregagless of whether they fit in the window.connectionFlags
- The connection flags to use if a connection must beacquired by this operation.cancellationSignal
- A signal to cancel the operation in progress, or null if none.
-
-
-
-