/external/webkit/Source/WebCore/storage/ |
IDBTransactionBackendImpl.cpp | 38 PassRefPtr<IDBTransactionBackendImpl> IDBTransactionBackendImpl::create(DOMStringList* objectStores, unsigned short mode, IDBDatabaseBackendImpl* database) 40 return adoptRef(new IDBTransactionBackendImpl(objectStores, mode, database)); 43 IDBTransactionBackendImpl::IDBTransactionBackendImpl(DOMStringList* objectStores, unsigned short mode, IDBDatabaseBackendImpl* database) 47 , m_database(database) 48 , m_transaction(database->backingStore()->createTransaction())
|
IDBDatabaseBackendImpl.h | 47 static PassRefPtr<IDBDatabaseBackendImpl> create(const String& name, IDBBackingStore* database, IDBTransactionCoordinator* coordinator, IDBFactoryBackendImpl* factory, const String& uniqueIdentifier) 49 return adoptRef(new IDBDatabaseBackendImpl(name, database, coordinator, factory, uniqueIdentifier)); 73 IDBDatabaseBackendImpl(const String& name, IDBBackingStore* database, IDBTransactionCoordinator*, IDBFactoryBackendImpl*, const String& uniqueIdentifier);
|
/frameworks/base/core/tests/coretests/src/android/content/ |
MemoryFileProvider.java | 19 import android.database.Cursor; 20 import android.database.DatabaseUtils; 21 import android.database.sqlite.SQLiteDatabase; 22 import android.database.sqlite.SQLiteOpenHelper; 87 Log.w(TAG, "Upgrading test database from version " +
|
/frameworks/base/docs/html/guide/topics/data/ |
data-storage.jd | 33 <li><a href="#dbDebugging">Database debugging</a></li> 62 <dd>Store structured data in a private database.</dd> 384 <p>The recommended method to create a new SQLite database is to create a subclass of {@link 385 android.database.sqlite.SQLiteOpenHelper} and override the {@link 386 android.database.sqlite.SQLiteOpenHelper#onCreate(SQLiteDatabase) onCreate()} method, in which you 387 can execute a SQLite command to create tables in the database. For example:</p> 410 <p>You can then get an instance of your {@link android.database.sqlite.SQLiteOpenHelper} 411 implementation using the constructor you've defined. To write to and read from the database, call 412 {@link android.database.sqlite.SQLiteOpenHelper#getWritableDatabase()} and {@link 413 android.database.sqlite.SQLiteOpenHelper#getReadableDatabase()}, respectively. These both return [all...] |
/frameworks/base/docs/html/sdk/api_diff/14/changes/ |
android.database.sqlite.SQLiteOpenHelper.html | 10 android.database.sqlite.SQLiteOpenHelper 74 Class android.database.sqlite.<A HREF="../../../../reference/android/database/sqlite/SQLiteOpenHelper.html" target="_top"><font size="+2"><code>SQLiteOpenHelper</code></font></A> 86 <A NAME="android.database.sqlite.SQLiteOpenHelper.getDatabaseName_added()"></A> 87 <nobr><code>String</code> <A HREF="../../../../reference/android/database/sqlite/SQLiteOpenHelper.html#getDatabaseName()" target="_top"><code>getDatabaseName</code></A>()</nobr>
|
android.database.sqlite.SQLiteQueryBuilder.html | 10 android.database.sqlite.SQLiteQueryBuilder 74 Class android.database.sqlite.<A HREF="../../../../reference/android/database/sqlite/SQLiteQueryBuilder.html" target="_top"><font size="+2"><code>SQLiteQueryBuilder</code></font></A> 86 <A NAME="android.database.sqlite.SQLiteQueryBuilder.setStrict_added(boolean)"></A> 87 <nobr><code>void</code> <A HREF="../../../../reference/android/database/sqlite/SQLiteQueryBuilder.html#setStrict(boolean)" target="_top"><code>setStrict</code></A>(<code>boolean</code>)</nobr>
|
pkg_android.database.sqlite.html | 10 android.database.sqlite 74 Package <A HREF="../../../../reference/android/database/sqlite/package-summary.html" target="_top"><font size="+1"><code>android.database.sqlite</code></font></A> 85 <nobr><A HREF="android.database.sqlite.SQLiteOpenHelper.html">SQLiteOpenHelper</A></nobr> 92 <nobr><A HREF="android.database.sqlite.SQLiteQueryBuilder.html">SQLiteQueryBuilder</A></nobr>
|
/frameworks/base/docs/html/sdk/api_diff/3/changes/ |
android.database.Cursor.html | 10 android.database.Cursor 74 Interface android.database.<A HREF="../../../../reference/android/database/Cursor.html" target="_top"><font size="+2"><code>Cursor</code></font></A> 86 <A NAME="android.database.Cursor.getColumnIndex_changed(java.lang.String)"></A> 87 <nobr><code>int</code> <A HREF="../../../../reference/android/database/Cursor.html#getColumnIndex(java.lang.String)" target="_top"><code>getColumnIndex</code></A>(<code>String</code>) </nobr>
|
android.database.CursorWrapper.html | 10 android.database.CursorWrapper 74 Class android.database.<A HREF="../../../../reference/android/database/CursorWrapper.html" target="_top"><font size="+2"><code>CursorWrapper</code></font></A> 86 <A NAME="android.database.CursorWrapper.getColumnIndex_changed(java.lang.String)"></A> 87 <nobr><code>int</code> <A HREF="../../../../reference/android/database/CursorWrapper.html#getColumnIndex(java.lang.String)" target="_top"><code>getColumnIndex</code></A>(<code>String</code>) </nobr>
|
android.database.DatabaseUtils.html | 10 android.database.DatabaseUtils 74 Class android.database.<A HREF="../../../../reference/android/database/DatabaseUtils.html" target="_top"><font size="+2"><code>DatabaseUtils</code></font></A> 86 <A NAME="android.database.DatabaseUtils.appendEscapedSQLString_changed(java.lang.StringBuilder, java.lang.String)"></A> 87 <nobr><code>void</code> <A HREF="../../../../reference/android/database/DatabaseUtils.html#appendEscapedSQLString(java.lang.StringBuilder, java.lang.String)" target="_top"><code>appendEscapedSQLString</code></A>(<code>StringBuilder,</nobr> String<nobr><nobr></code>) </nobr>
|
/frameworks/base/docs/html/sdk/api_diff/5/changes/ |
android.database.DatabaseUtils.html | 10 android.database.DatabaseUtils 74 Class android.database.<A HREF="../../../../reference/android/database/DatabaseUtils.html" target="_top"><font size="+2"><code>DatabaseUtils</code></font></A> 86 <A NAME="android.database.DatabaseUtils.readExceptionWithOperationApplicationExceptionFromParcel_added(android.os.Parcel)"></A> 87 <nobr><code>void</code> <A HREF="../../../../reference/android/database/DatabaseUtils.html#readExceptionWithOperationApplicationExceptionFromParcel(android.os.Parcel)" target="_top"><code>readExceptionWithOperationApplicationExceptionFromParcel</code></A>(<code>Parcel</code>)</nobr>
|
pkg_android.database.sqlite.html | 10 android.database.sqlite 74 Package <A HREF="../../../../reference/android/database/sqlite/package-summary.html" target="_top"><font size="+1"><code>android.database.sqlite</code></font></A> 85 <nobr><A HREF="../../../../reference/android/database/sqlite/SQLiteTransactionListener.html" target="_top"><code><I>SQLiteTransactionListener</I></code></A></nobr> 100 <nobr><A HREF="android.database.sqlite.SQLiteDatabase.html">SQLiteDatabase</A></nobr>
|
/frameworks/base/docs/html/sdk/api_diff/8/changes/ |
pkg_android.database.sqlite.html | 10 android.database.sqlite 74 Package <A HREF="../../../../reference/android/database/sqlite/package-summary.html" target="_top"><font size="+1"><code>android.database.sqlite</code></font></A> 85 <nobr><A HREF="android.database.sqlite.SQLiteDatabase.html">SQLiteDatabase</A></nobr> 92 <nobr><A HREF="android.database.sqlite.SQLiteProgram.html">SQLiteProgram</A></nobr>
|
/libcore/luni/src/main/java/java/sql/ |
SQLData.java | 31 * and can store changes back into the database using the 58 * if a database error occurs. 63 * Reads data from the database into this object. This method follows these 87 * if a database error occurs. 110 * if a database error occurs.
|
/packages/apps/SoundRecorder/res/values/ |
strings.xml | 53 <!-- the name under which recordings will be visible in the media database is formatted like this --> 55 <!-- all recordings will show up in the media database with this 'artist' name --> 57 <!-- all recordings will show up in the media database with this 'album' name --> 59 <!-- all recordings will show up in the media database in a playlist with this name --> 68 <!-- shown as the message in a dialog when the recording could not be added to the media database -->
|
/external/sqlite/dist/ |
sqlite3.h | 215 ** CAPI3REF: Database Connection Handle 216 ** KEYWORDS: {database connection} {database connections} 218 ** Each open SQLite database is represented by a pointer to an instance of 267 ** CAPI3REF: Closing A Database Connection 276 ** sqlite3_close() is called on a [database connection] that still has 309 ** in the context of the [database connection] passed in as its 1st 346 ** SQL comments, then no SQL statements are evaluated and the database 353 ** is a valid and open [database connection]. 354 ** <li> The application must not close [database connection] specified b [all...] |
sqlite3.h.orig | 215 ** CAPI3REF: Database Connection Handle 216 ** KEYWORDS: {database connection} {database connections} 218 ** Each open SQLite database is represented by a pointer to an instance of 267 ** CAPI3REF: Closing A Database Connection 276 ** sqlite3_close() is called on a [database connection] that still has 309 ** in the context of the [database connection] passed in as its 1st 346 ** SQL comments, then no SQL statements are evaluated and the database 353 ** is a valid and open [database connection]. 354 ** <li> The application must not close [database connection] specified b [all...] |
/external/chromium/app/sql/ |
connection.h | 77 // The tipical usage is to centralize the code designed to handle database 107 // The database is opened by calling Open[InMemory](). Any uncommitted 114 // Sets the page size that will be used when creating a new database. This 128 // Call to put the database in exclusive locking mode. There is no "back to 133 // Exclusive mode means that the database is not unlocked at the end of each 153 // Initializes the SQL connection for a temporary in-memory database. There 154 // will be no associated file on disk, and the initial database will be 158 // Returns trie if the database has been successfully opened. 161 // Closes the database. This is automatically performed on destruction for 162 // you, but this allows you to close the database early. You must not cal [all...] |
/frameworks/base/docs/html/sdk/api_diff/11/changes/ |
constructors_index_all.html | 91 <nobr><A HREF="android.widget.CursorAdapter.html#android.widget.CursorAdapter.ctor_added(android.content.Context, android.database.Cursor, int)" class="hiddenlink" target="rightframe"><b>CursorAdapter</b> 93 <nobr><A HREF="android.widget.CursorAdapter.html#android.widget.CursorAdapter.ctor_changed(android.content.Context, android.database.Cursor)" class="hiddenlink" target="rightframe">CursorAdapter 184 <nobr><A HREF="android.widget.ResourceCursorAdapter.html#android.widget.ResourceCursorAdapter.ctor_added(android.content.Context, int, android.database.Cursor, int)" class="hiddenlink" target="rightframe"><b>ResourceCursorAdapter</b> 186 <nobr><A HREF="android.widget.ResourceCursorAdapter.html#android.widget.ResourceCursorAdapter.ctor_changed(android.content.Context, int, android.database.Cursor)" class="hiddenlink" target="rightframe">ResourceCursorAdapter 204 <nobr><A HREF="android.widget.SimpleCursorAdapter.html#android.widget.SimpleCursorAdapter.ctor_added(android.content.Context, int, android.database.Cursor, java.lang.String[], int[], int)" class="hiddenlink" target="rightframe"><b>SimpleCursorAdapter</b> 206 <nobr><A HREF="android.widget.SimpleCursorAdapter.html#android.widget.SimpleCursorAdapter.ctor_changed(android.content.Context, int, android.database.Cursor, java.lang.String[], int[])" class="hiddenlink" target="rightframe">SimpleCursorAdapter 214 <nobr><A HREF="android.database.sqlite.SQLiteCursor.html#android.database.sqlite.SQLiteCursor.ctor_added(android.database.sqlite.SQLiteCursorDriver, java.lang.String, android.database.sqlite.SQLiteQuery)" class="hiddenlink" target="rightframe"><b>SQLiteCursor</b [all...] |
/packages/providers/MediaProvider/src/com/android/providers/media/ |
MediaProvider.java | 36 import android.database.Cursor; 37 import android.database.DatabaseUtils; 38 import android.database.MatrixCursor; 39 import android.database.SQLException; 40 import android.database.sqlite.SQLiteDatabase; 41 import android.database.sqlite.SQLiteOpenHelper; 42 import android.database.sqlite.SQLiteQueryBuilder; 189 // If secondary external storage is ejected, then we delete all database 192 DatabaseHelper database = mDatabases.get(EXTERNAL_VOLUME); 194 if (database != null) 1885 DatabaseHelper database = getDatabaseForUri(uri); local 2427 DatabaseHelper database = getDatabaseForUri(uri); local 2950 DatabaseHelper database = getDatabaseForUri(uri); local 3394 DatabaseHelper database = getDatabaseForUri(uri); local 3442 DatabaseHelper database = getDatabaseForUri(uri); local 3725 DatabaseHelper database = getDatabaseForUri(uri); local 3770 DatabaseHelper database = getDatabaseForUri(uri); local 4428 DatabaseHelper database = mDatabases.get(volume); local [all...] |
/cts/tests/appsecurity-tests/test-apps/AppWithData/src/com/android/cts/appwithdata/ |
CreatePrivateDataTest.java | 22 import android.database.Cursor; 23 import android.database.sqlite.SQLiteDatabase; 24 import android.database.sqlite.SQLiteOpenHelper;
|
/cts/tests/tests/database/src/android/database/cts/ |
ObservableTest.java | 17 package android.database.cts; 19 import android.database.Observable; 26 @TestTargetClass(android.database.Observable.class)
|
/cts/tests/tests/provider/src/android/provider/cts/ |
MediaStore_Audio_GenresTest.java | 26 import android.database.Cursor; 27 import android.database.SQLException; 100 // the internal database does not have genres
|
/external/neven/FaceRecEm/common/src/b_FDSDK/ |
Types.h | 88 /** database arrangement type */ 91 /** database entries are arranged in one coherent memory block without spaces */ 94 /** database entries are arbitrarily distributed in memory and are referenced through pointers */
|
/external/webkit/Source/WebCore/inspector/ |
InstrumentingAgents.h | 70 #if ENABLE(DATABASE) 112 #if ENABLE(DATABASE) 143 #if ENABLE(DATABASE)
|