HomeSort by relevance Sort by last modified time
    Searched full:database (Results 201 - 225 of 4506) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/mesa3d/docs/
bugs.html 10 <h1>Bug Database</h1>
13 The Mesa bug database is hosted on
15 The old bug database on SourceForge is no longer used.
32 <li>Check if your bug is already reported in the database.
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPagerAdapter.java 3 import android.database.DataSetObserver;
ShadowSQLiteStatement.java 3 import android.database.sqlite.SQLiteDatabase;
4 import android.database.sqlite.SQLiteDoneException;
5 import android.database.sqlite.SQLiteStatement;
24 throw new IllegalStateException("database " + mDatabase.getPath() + " already closed");
  /libcore/luni/src/main/java/java/sql/
Connection.java 24 * A connection represents a link from a Java application to a database. All SQL
26 * Database statements that are executed within this context form a
27 * database session which forms one or more closed transactions. Especially in
29 * the same values of the database. which may lead to the following phenomena
91 * if there is a problem accessing the database.
96 * Causes the instant release of all database and driver connection
108 * if there is a problem accessing the database.
114 * {@code rollback} of the associated transaction. All locks in the database
119 * if there is a problem accessing the database or if the target
126 * the remote database
    [all...]
CallableStatement.java 68 * if a database error occurs.
80 * if there is a problem accessing the database.
95 * if a database error occurs.
113 * if a database error occurs.
130 * if a database error occurs.
145 * if a database error occurs.
159 * if a database error occurs.
172 * if a database error occurs.
185 * if a database error occurs.
199 * if a database error occurs
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarCache.java 20 import android.database.Cursor;
21 import android.database.sqlite.SQLiteDatabase;
22 import android.database.sqlite.SQLiteOpenHelper;
30 * a SQLite database.
62 * This exception is thrown when the cache encounter a null key or a null database reference
85 Log.e(TAG, "Could not read timezone database version from CalendarCache");
162 * Write a (key, value) pair in the database used by the cache. This method should be called in
165 * @param db the database (must not be null)
168 * @throws CacheException when key or database are null
173 throw new CacheException("Database cannot be null")
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
pragma.c 87 ** backed temporary databases, 2 for the Red-Black tree in memory database
126 ** If the TEMP database is open, close it and mark the database schema
291 ** PRAGMA [database.]id [= value]
297 ** If the left side is "database.id" then pId1 is the database name
303 Token *pId1, /* First part of [database.]id field */
304 Token *pId2, /* Second part of [database.]id field, or NULL */
310 const char *zDb = 0; /* The database name */
312 int iDb; /* Database index for <database> *
    [all...]
  /cts/tests/tests/database/
AndroidManifest.xml 19 package="com.android.cts.database">
27 android:targetPackage="com.android.cts.database"
28 android:label="CTS tests of android.database"/>
  /development/tutorials/NotepadCodeLab/Notepadv1/src/com/android/demo/notepad1/
NotesDbAdapter.java 21 import android.database.Cursor;
22 import android.database.SQLException;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
28 * Simple notes database access helper class. Defines the basic CRUD operations
48 * Database creation sql statement
74 Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
82 * Constructor - takes the context to allow the database to be
92 * Open the notes database. If it cannot be opened, try to create a new
93 * instance of the database. If it cannot be created, throw an exception t
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/
NotesDbAdapter.java 21 import android.database.Cursor;
22 import android.database.SQLException;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
28 * Simple notes database access helper class. Defines the basic CRUD operations
48 * Database creation sql statement
74 Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
82 * Constructor - takes the context to allow the database to be
92 * Open the notes database. If it cannot be opened, try to create a new
93 * instance of the database. If it cannot be created, throw an exception t
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/
NotesDbAdapter.java 21 import android.database.Cursor;
22 import android.database.SQLException;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
28 * Simple notes database access helper class. Defines the basic CRUD operations
48 * Database creation sql statement
74 Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
82 * Constructor - takes the context to allow the database to be
92 * Open the notes database. If it cannot be opened, try to create a new
93 * instance of the database. If it cannot be created, throw an exception t
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
NotesDbAdapter.java 21 import android.database.Cursor;
22 import android.database.SQLException;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
28 * Simple notes database access helper class. Defines the basic CRUD operations
48 * Database creation sql statement
74 Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
82 * Constructor - takes the context to allow the database to be
92 * Open the notes database. If it cannot be opened, try to create a new
93 * instance of the database. If it cannot be created, throw an exception t
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
NotesDbAdapter.java 21 import android.database.Cursor;
22 import android.database.SQLException;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
28 * Simple notes database access helper class. Defines the basic CRUD operations
48 * Database creation sql statement
74 Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
82 * Constructor - takes the context to allow the database to be
92 * Open the notes database. If it cannot be opened, try to create a new
93 * instance of the database. If it cannot be created, throw an exception t
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/
NotesDbAdapter.java 21 import android.database.Cursor;
22 import android.database.SQLException;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
28 * Simple notes database access helper class. Defines the basic CRUD operations
48 * Database creation sql statement
74 Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
82 * Constructor - takes the context to allow the database to be
92 * Open the notes database. If it cannot be opened, try to create a new
93 * instance of the database. If it cannot be created, throw an exception t
    [all...]
  /external/chromium/chrome/browser/history/
in_memory_database.h 25 // Creates an empty in-memory database.
28 // Initializes the database by directly slurping the data from the given
39 // Initializes the database connection, this is the shared code between
  /external/chromium/chrome/browser/ui/views/
database_info_view.h 20 // Responsible for displaying a tabular grid of Database information.
26 // Update the display from the specified Database info.
34 // Enables or disables the database property text fields.
  /external/chromium/chrome/browser/webdata/
web_database.h 22 // This class manages a SQLite database that stores various web page meta data.
28 // Initialize the database given a name. The name defines where the SQLite
46 // Used by |Init()| to migration database schema from older versions to
  /external/chromium_org/chrome/browser/history/
in_memory_database.h 26 // Creates an empty in-memory database.
29 // Initializes the database by directly slurping the data from the given
40 // Initializes the database connection, this is the shared code between
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
picasa_finder.h 37 // Bounces to FILE thread to find Picasa database. If the platform supports
38 // Picasa and a Picasa database is found, |callback| will be invoked on the
43 // Builds the OS-dependent Picasa database path from the app-data path.
  /external/chromium_org/sync/syncable/
in_memory_directory_backing_store.h 15 // require us to write to a file. An in-memory sqlite database is much faster
16 // than an on-disk database, so this can result in significant speedups in our
21 // database is lost. If these limitations are a problem for you, consider using
  /external/chromium_org/third_party/WebKit/ManualTests/inspector/
display-sql-transaction-error.html 3 var db = openDatabase("InspectorTest", "0.1", "Database for Inspector tests", 200000);
10 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=19438">Bug 19438: Transaction errors are never displayed in database query view</a>.</p>
15 <li>Click on the <code>InspectorTest</code> database</li>
  /external/chromium_org/third_party/WebKit/ManualTests/
localstorage-empty-database.html 7 Since no data has been stored, no database file should have been created.</p>
9 <p>If you click <a href="javascript:localStorage.setItem('bar', 'baz');">here</a>, data will be stored, and a database file should be created.</p>
11 <p>If you click <a href="javascript:localStorage.clear();">here</a>, the local storage will be cleared, and the database file should be gone when the browser is closed.</p>
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Database.js 33 WebInspector.Database = function(model, id, domain, name, version)
42 WebInspector.Database.prototype = {
119 message = WebInspector.UIString("Database no longer has expected version.");
148 * @return {!Array.<!WebInspector.Database>}
160 * @return {!WebInspector.Database}
168 * @param {!WebInspector.Database} database
170 _addDatabase: function(database)
172 this._databases.push(database);
173 this.dispatchEventToListeners(WebInspector.DatabaseModel.Events.DatabaseAdded, database);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseCallback.idl 30 boolean handleEvent(Database database);
31 boolean handleEvent(DatabaseSync database);
WorkerGlobalScopeWebDatabase.idl 28 [RuntimeEnabled=Database, RaisesException] Database openDatabase(DOMString name, DOMString version, DOMString displayName, unsigned long estimatedSize, optional DatabaseCallback creationCallback);
30 [RuntimeEnabled=Database, RaisesException] DatabaseSync openDatabaseSync(DOMString name, DOMString version, DOMString displayName, unsigned long estimatedSize, optional DatabaseCallback creationCallback);

Completed in 786 milliseconds

1 2 3 4 5 6 7 891011>>