Searched defs:database (Results 26 - 50 of 85) sorted by relevance

1234

/frameworks/base/core/java/android/database/
H A DCursorIndexOutOfBoundsException.java17 package android.database;
H A DContentObservable.java17 package android.database;
H A DCrossProcessCursor.java17 package android.database;
H A DDefaultDatabaseErrorHandler.java16 package android.database;
21 import android.database.sqlite.SQLiteDatabase;
22 import android.database.sqlite.SQLiteException;
27 * Default class used to define the actions to take when the database corruption is reported
34 * android.database.sqlite.SQLiteDatabase.CursorFactory, DatabaseErrorHandler)}</li>
36 * android.database.sqlite.SQLiteDatabase.CursorFactory, int, DatabaseErrorHandler)}</li>
38 * The specified {@link DatabaseErrorHandler} is used to handle database corruption errors, if they
49 * defines the default method to be invoked when database corruption is detected.
50 * @param dbObj the {@link SQLiteDatabase} object representing the database on which corruption
54 Log.e(TAG, "Corruption reported by sqlite on database
[all...]
H A DObservable.java17 package android.database;
H A DBulkCursorDescriptor.java17 package android.database;
H A DCrossProcessCursorWrapper.java17 package android.database;
19 import android.database.CrossProcessCursor;
20 import android.database.Cursor;
21 import android.database.CursorWindow;
22 import android.database.CursorWrapper;
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteException.java17 package android.database.sqlite;
19 import android.database.SQLException;
H A DSQLiteStatementInfo.java17 package android.database.sqlite;
H A DSQLiteTransactionListener.java17 package android.database.sqlite;
H A DSQLiteCustomFunction.java17 package android.database.sqlite;
H A DSQLiteClosable.java17 package android.database.sqlite;
24 * This class implements a primitive reference counting scheme for database objects.
H A DSQLiteCursorDriver.java17 package android.database.sqlite;
19 import android.database.Cursor;
20 import android.database.sqlite.SQLiteDatabase.CursorFactory;
H A DSQLiteGlobal.java17 package android.database.sqlite;
24 * Provides access to SQLite functions that affect all database connection,
59 * Gets the default page size to use when creating a database.
89 * Gets the default database synchronization mode when WAL is not in use.
98 * Gets the database synchronization mode when in WAL mode.
107 * Gets the WAL auto-checkpoint integer in database pages.
H A DSQLiteQuery.java17 package android.database.sqlite;
19 import android.database.CursorWindow;
H A DSQLiteStatement.java17 package android.database.sqlite;
22 * Represents a statement that can be executed against a database. The statement
38 * @throws android.database.SQLException If the SQL string is invalid for
58 * @throws android.database.SQLException If the SQL string is invalid for
80 * @throws android.database.SQLException If the SQL string is invalid for
102 * @throws android.database.sqlite.SQLiteDoneException if the query returns zero rows
123 * @throws android.database.sqlite.SQLiteDoneException if the query returns zero rows
144 * @throws android.database.sqlite.SQLiteDoneException if the query returns zero rows
H A DSQLiteDatabaseConfiguration.java17 package android.database.sqlite;
24 * Describes how to configure a database.
27 * configuration settings that are applied to a database after it
38 // The pattern we use to strip email addresses from database paths
49 * The database path.
54 * The label to use to describe the database when it appears in logs.
60 * The flags used to open the database.
65 * The maximum size of the prepared statement cache for each database connection.
73 * The database locale.
93 * Creates a database configuratio
[all...]
/frameworks/base/core/tests/coretests/src/android/database/sqlite/
H A DSQLiteCursorTest.java17 package android.database.sqlite;
21 import android.database.Cursor;
70 // a new database page for each row.
/frameworks/base/core/tests/coretests/src/android/database/
H A DCursorWindowTest.java17 package android.database;
20 import android.database.CursorWindow;
H A DDatabaseErrorHandlerTest.java17 package android.database;
20 import android.database.sqlite.SQLiteDatabase;
21 import android.database.sqlite.SQLiteDiskIOException;
22 import android.database.sqlite.SQLiteException;
60 // database file should still exist
67 // write junk into the database file
72 // since the database file is now corrupt, doing any sql on this database connection
90 // database file should be gone
92 // after corruption handler is called, the database fil
[all...]
H A DDatabaseLocaleTest.java17 package android.database;
19 import android.database.sqlite.SQLiteDatabase;
20 import android.database.Cursor;
95 // The database code currently uses PRIMARY collation strength,
97 // of case or accents), leaving the "cote" flavors in database order.
H A DDatabaseStressTest.java17 package android.database;
20 import android.database.sqlite.*;
H A DMatrixCursorTest.java17 package android.database;
H A DDatabaseLockTest.java17 package android.database;
19 import android.database.sqlite.SQLiteDatabase;
27 * This is a series of unit tests for database locks.
64 * attempting to access a database concurrently.
66 * same database at the same time with the same prioritization, neither thread
67 * is locked out and prevented from accessing the database.
114 * testLockLatency() tests the latency of database locks.
116 * the same database, the locking/unlocking of the database is done within an
/frameworks/support/v4/java/android/support/v4/database/
H A DDatabaseUtilsCompat.java17 package android.support.v4.database;
22 * Helper for accessing features in {@link android.database.DatabaseUtils}

Completed in 359 milliseconds

1234