Home | History | Annotate | Download | only in sqlite

Lines Matching defs:database

17 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 configuration with the required parameters for opening a
94 * database and default values for all other parameters.
96 * @param path The database path.
97 * @param openFlags Open flags for the database, such as {@link SQLiteDatabase#OPEN_READWRITE}.
114 * Creates a database configuration as a copy of another configuration.
140 + "the same database.");
152 * Returns true if the database is in-memory.
153 * @return True if the database is in-memory.