Home | History | Annotate | Download | only in sqlite

Lines Matching refs:statement

249      * Each prepared-statement is between 1K - 6K, depending on the complexity of the
250 * SQL statement & schema. A large SQL cache may use a significant amount of memory.
976 * Compiles an SQL statement into a reusable pre-compiled statement object.
978 * statement and fill in those values with {@link SQLiteProgram#bindString}
980 * statement. Statements may not return result sets larger than 1x1.
984 * @param sql The raw SQL statement, may contain ? for unknown values to be
1467 SQLiteStatement statement = new SQLiteStatement(this, sql.toString(), bindArgs);
1469 return statement.executeInsert();
1471 statement.close();
1491 SQLiteStatement statement = new SQLiteStatement(this, "DELETE FROM " + table +
1494 return statement.executeUpdateDelete();
1496 statement.close();
1563 SQLiteStatement statement = new SQLiteStatement(this, sql.toString(), bindArgs);
1565 return statement.executeUpdateDelete();
1567 statement.close();
1575 * Execute a single SQL statement that is NOT a SELECT
1576 * or any other SQL statement that returns data.
1585 * using "PRAGMA journal_mode'<value>" statement if your app is using
1589 * @param sql the SQL statement to be executed. Multiple statements separated by semicolons are
1598 * Execute a single SQL statement that is NOT a SELECT/INSERT/UPDATE/DELETE.
1631 * using "PRAGMA journal_mode'<value>" statement if your app is using
1635 * @param sql the SQL statement to be executed. Multiple statements separated by semicolons are
1663 SQLiteStatement statement = new SQLiteStatement(this, sql, bindArgs);
1665 return statement.executeUpdateDelete();
1667 statement.close();
1763 * Sets the maximum size of the prepared-statement cache for this database.
2064 // thread that is executing the SQL statement: "attach database <blah> as <foo>"