HomeSort by relevance Sort by last modified time
    Searched full:database (Results 76 - 100 of 2668) sorted by null

1 2 34 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/sql/
DatabaseMetaData.java 21 * An interface which provides comprehensive information about the database
25 * information about the underlying database capabilities in association with
372 * if there is a database error.
383 * if there is a database error.
394 * if there is a database error.
399 * Returns whether the database ignores data definition statements within a
402 * @return {@code true} if the database ignores a data definition statement,
405 * if there is a database error.
421 * if there is a database error.
432 * if there is a database error
    [all...]
Driver.java 50 * if a database error occurs.
55 * Attempts to make a database connection to a data source specified by a
63 * strings. Normally, a connection to a database requires at
65 * "password"} in order to pass authentication to the database.
66 * @return the connection to the database.
68 * if a database error occurs.
91 * to a database. Note that the returned array of properties may change
95 * the URL of the database. An application may call this method
98 * database login process.
101 * prompted to provide in order to connect to the database
    [all...]
PreparedStatement.java 42 * if a database error happens.
55 * if a database error happens.
73 * if a database error happens.
83 * if a database error happens or if the SQL statement does not
96 * if a database error happens or if the SQL statement returns a
114 * if there is a database error.
125 * if a database error happens.
139 * if a database error happens.
164 * if a database error happens.
180 * if a database error happens
    [all...]
  /external/webkit/LayoutTests/storage/
open-database-creation-callback.html 27 // Open a new database with a creation callback, and make sure the creation callback is queued
34 log("Creation callback was called with a database with version " +
51 // Try to open another handle to the same database.
52 // Since the version of this database is "" (empty string), openDatabase() should return
66 // Open a handle to another database, first without a creation callback, then with one.
  /external/webkit/Source/WebCore/inspector/
InspectorDatabaseInstrumentation.h 34 #include "Database.h"
40 #if ENABLE(DATABASE)
41 inline void InspectorInstrumentation::didOpenDatabase(ScriptExecutionContext* context, PassRefPtr<Database> database, const String& domain, const String& name, const String& version)
45 didOpenDatabaseImpl(inspectorAgent, database, domain, name, version);
  /external/webkit/Source/WebCore/manual-tests/
database-threading-stress-test.html 14 db = openDatabase("StressTest1", "1.0", "Database Stress Test", 200000);
16 alert("Failed to open the database on disk. This is probably because the version was bad or there is not enough space left in this domain's quota");
18 alert("Couldn't open the database.");
79 This test stresses the database threading code by constantly opening transactions to the test database at a fast rate.<br>
  /external/webkit/Source/WebKit/gtk/webkit/
webkiticondatabase.h 59 webkit_icon_database_get_path (WebKitIconDatabase* database);
62 webkit_icon_database_set_path (WebKitIconDatabase* database,
66 webkit_icon_database_get_icon_uri (WebKitIconDatabase* database,
70 webkit_icon_database_get_icon_pixbuf (WebKitIconDatabase* database,
74 webkit_icon_database_clear (WebKitIconDatabase* database);
webkitsecurityorigin.cpp 37 * resources for client-side scripting or database access.
42 * Database quotas and usages are also defined per security origin. The
184 * WebKitSecurityOrigin:web-database-usage:
191 g_param_spec_uint64("web-database-usage",
192 _("Web Database Usage"),
197 * WebKitSecurityOrigin:web-database-quota:
199 * The web database qouta of the security origin in bytes.
204 g_param_spec_uint64("web-database-quota",
205 _("Web Database Quota"),
206 _("The web database quota of the security origin in bytes")
373 WebKitWebDatabase* database = webkit_security_origin_get_web_database(securityOrigin, databaseNames[i].utf8().data()); local
387 WebKitWebDatabase* database = (WebKitWebDatabase*) g_hash_table_lookup(databaseHash, databaseName); local
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DatabaseModifier.java 21 import android.database.DatabaseUtils;
22 import android.database.sqlite.SQLiteDatabase;
25 * An interface which wraps key database modify operations (insert, update, delete) to perform
26 * additional tasks before or after the database modification operation. A typical use case is to
27 * generate notification when a database is modified.
ContactsTransaction.java 22 import android.database.sqlite.SQLiteDatabase;
23 import android.database.sqlite.SQLiteTransactionListener;
80 * If the given database has not already been enlisted in this transaction, adds it to our
82 * database in this transaction, this is a no-op.
83 * @param db The database to start a transaction on, if necessary.
108 * Retrieves the database enlisted in the transaction corresponding to the given tag.
109 * @param tag The tag of the database to look up.
110 * @return The database corresponding to the tag, or null if no database with that tag has been
118 * Removes the database corresponding to the given tag from this transaction. It is now th
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/8/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.cursorDoubleToContentValuesIfPresent_added(android.database.Cursor, android.content.ContentValues, java.lang.String)"></A>
87 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/database/DatabaseUtils.html#cursorDoubleToContentValuesIfPresent(android.database.Cursor, android.content.ContentValues, java.lang.String)" target="_top"><code>cursorDoubleToContentValuesIfPresent</code></A>(<code>Cursor,</nobr> ContentValues<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
93 <A NAME="android.database.DatabaseUtils.cursorFloatToContentValuesIfPresent_added(android.database.Cursor, android.content.ContentValues, java.lang.String)"></A>
94 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/database/DatabaseUtils.html#cursorFloatToContentValuesIfPresent(android.database.Cursor, android.content.Co (…)
    [all...]
  /libcore/luni/src/main/java/javax/sql/
RowSet.java 41 * persists on a database. It extends the functionality of
46 * general database environment together with the getters and setters for
52 * API. It may be <i>connected</i>, maintaining a connection to the database
55 * with the database each time.
58 * the {@code RowSet} with data, possibly from a non-relational database source.
89 * if a problem occurs accessing the database.
94 * Fetches data for this {@code RowSet} from the database. If successful,
98 * Data is retrieved connecting to the database and executing an
100 * properties to be set: URL, database name, user name, password,
105 * The {@code RowSet} may use a {@code RowSetReader} to access the database
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/11/changes/
android.database.sqlite.SQLiteDatabase.html 10 android.database.sqlite.SQLiteDatabase
74 Class android.database.sqlite.<A HREF="../../../../reference/android/database/sqlite/SQLiteDatabase.html" target="_top"><font size="+2"><code>SQLiteDatabase</code></font></A>
86 <A NAME="android.database.sqlite.SQLiteDatabase.beginTransactionNonExclusive_added()"></A>
87 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/database/sqlite/SQLiteDatabase.html#beginTransactionNonExclusive()" target="_top"><code>beginTransactionNonExclusive</code></A>()</nobr>
93 <A NAME="android.database.sqlite.SQLiteDatabase.beginTransactionWithListenerNonExclusive_added(android.database.sqlite.SQLiteTransactionListener)"></A>
94 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/database/sqlite/SQLiteDatabase.html#beginTransactionWithListenerNonExclusive(android.database.sqlite.SQLiteTransactionListener)" target="_top"><code>beginTransactionWithListenerNonExclusive</code></A>(<code>SQLiteTransactionListener</code>)</nobr>
100 <A NAME="android.database.sqlite.SQLiteDatabase.enableWriteAheadLogging_added()"></A
    [all...]
android.database.sqlite.SQLiteCursor.html 10 android.database.sqlite.SQLiteCursor
74 Class android.database.sqlite.<A HREF="../../../../reference/android/database/sqlite/SQLiteCursor.html" target="_top"><font size="+2"><code>SQLiteCursor</code></font></A>
85 <A NAME="android.database.sqlite.SQLiteCursor.ctor_added(android.database.sqlite.SQLiteCursorDriver, java.lang.String, android.database.sqlite.SQLiteQuery)"></A>
86 <nobr><A HREF="../../../../reference/android/database/sqlite/SQLiteCursor.html#SQLiteCursor(android.database.sqlite.SQLiteCursorDriver, java.lang.String, android.database.sqlite.SQLiteQuery)" target="_top"><code>SQLiteCursor</code></A>(<code>SQLiteCursorDriver,</nobr> String<nobr>,</nobr> SQLiteQuery<nobr><nobr></code>)</nobr>
100 <A NAME="android.database.sqlite.SQLiteCursor.ctor_changed(android.database.sqlite.SQLiteDatabase, android.database.sqlite.S (…)
    [all...]
  /external/webkit/Source/WebCore/storage/
SQLTransactionCoordinator.cpp 34 #if ENABLE(DATABASE)
36 #include "Database.h"
47 Database* database = transaction->database(); local
48 ASSERT(database);
49 return database->stringIdentifier();
110 // Notify all transactions in progress that the database thread is shutting down
130 #endif // ENABLE(DATABASE)
DatabaseTracker.cpp 32 #if ENABLE(DATABASE)
154 // Since we're imminently opening a database within this context's origin, make sure this origin is being tracked by the QuotaTracker
158 // If a database already exists, ignore the passed-in estimated size and say it's OK.
162 // If the database will fit, allow its creation.
172 // Temporarily make the details of the proposed database available, so the client can get at them.
184 // If the database will fit now, allow its creation.
223 unsigned long long DatabaseTracker::getMaxSizeForDatabase(const AbstractDatabase* database)
225 // The maximum size for a database is the full quota for its origin, minus the current usage within the origin,
226 // plus the current usage of the given database
229 SecurityOrigin* origin = database->securityOrigin()
    [all...]
SQLStatement.h 31 #if ENABLE(DATABASE)
42 class Database;
50 static PassRefPtr<SQLStatement> create(Database*, const String&, const Vector<SQLValue>&, PassRefPtr<SQLStatementCallback>, PassRefPtr<SQLStatementErrorCallback>, int permissions);
52 bool execute(Database*);
65 SQLStatement(Database*, const String& statement, const Vector<SQLValue>& arguments, PassRefPtr<SQLStatementCallback>, PassRefPtr<SQLStatementErrorCallback>, int permissions);
83 #endif // ENABLE(DATABASE)
  /external/webkit/Source/WebCore/platform/sql/
SQLiteFileSystem.h 44 // by the WebKit database code.
50 // Opens a database file.
52 // fileName - The name of the database file.
53 // database - The SQLite structure that represents the database stored
55 // forWebSQLDatabase - True, if and only if we're opening a Web SQL Database file.
58 static int openDatabase(const String& fileName, sqlite3** database, bool forWebSQLDatabase);
60 // Returns the file name for a database.
63 // dbName - The name of the database.
64 // originIdentifier - The origin that wants to use this database
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xresource.h 181 XrmDatabase /* database */
185 XrmDatabase* /* database */,
193 XrmDatabase* /* database */,
200 XrmDatabase* /* database */,
207 XrmDatabase* /* database */,
213 XrmDatabase* /* database */,
218 XrmDatabase /* database */,
226 XrmDatabase /* database */,
234 XrmDatabase /* database */,
251 * Resource Database Managemen
    [all...]
  /external/collada/src/dae/
dae.cpp 60 database = NULL;
82 delete database;
89 // Database setup
92 return database;
98 delete database;
102 database = _database;
106 //create default database
107 database = new daeSTLDatabase(*this);
110 database->setMeta(getMeta(domCOLLADA::ID()));
172 database->insertDocument(uri.c_str())
    [all...]
  /external/e2fsprogs/lib/et/test_cases/
heimdal2.et 29 ec KADM_NO_SERV, "Could not find service name in services database"
37 ec KADM_INUSE, "Entry already exists in database"
38 ec KADM_UK_SERROR, "Database store error"
39 ec KADM_UK_RERROR, "Database read error"
43 ec KADM_NOENTRY, "No such entry in the database"
51 ec KADM_DB_INUSE, "Database is locked or in use--try again later"
  /frameworks/base/docs/html/guide/developing/tools/
sqlite3.jd 23 <p>You can also optionally specify a full path to a database that you want to explore.
44 pull the database file from the device and start {@code sqlite3}:</p>
47 <li>Copy a database file from your device to your host machine:
49 adb pull &lt;database-file-on-device&gt;
53 <li>Start the sqlite3 tool from the <code>/tools</code> directory, specifying the database
56 sqlite3 &lt;database-file-on-host&gt;
  /packages/apps/Email/src/com/android/email/provider/
AccountBackupRestore.java 25 * Account backup/restore was implemented entirely for the purpose of recovering from database
27 * is that this is due to some kind of memory issue). Rather than have the offending database get
30 * accounts in the database and 2) there are backup accounts. This, at least, would cause user's
34 * backup version of the Account and HostAuth tables in a second database (EmailProviderBackup.db)
37 * determining whether or not a "corrupt" database is truly corrupt; the problem here is that it
43 * Backup user Account and HostAuth data into our backup database
  /external/chromium/chrome/browser/history/
history_database.h 27 // Encapsulates the SQL connection for the history database. This class holds
28 // the database connection and has methods the history system (including full
31 // We try to keep most logic out of the history database; this should be seen
42 // A simple class for scoping a history database transaction. This does not
43 // support rollback since the history database doesn't, either.
58 // database cleanup.
69 // Call to set the mode on the database to exclusive. The default locking mode
71 // performance since we know nobody else is using the database. This is
72 // separate from Init() since the in-memory database attaches to slurp the
79 // Transactions on the history database. Use the Transaction object abov
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteStatement.java 17 package android.database.sqlite;
19 import android.database.DatabaseUtils;
66 * @throws android.database.SQLException If the SQL string is invalid for
78 * @throws android.database.SQLException If the SQL string is invalid for
106 * @throws android.database.SQLException If the SQL string is invalid for
133 * @throws android.database.sqlite.SQLiteDoneException if the query returns zero rows
156 * @throws android.database.sqlite.SQLiteDoneException if the query returns zero rows
179 * @throws android.database.sqlite.SQLiteDoneException if the query returns zero rows
203 * <li>make sure the database is open</li>
204 * <li>get a database connection from the connection pool,if possible</li
    [all...]

Completed in 662 milliseconds

1 2 34 5 6 7 8 91011>>