HomeSort by relevance Sort by last modified time
    Searched full:database (Results 151 - 175 of 2940) sorted by null

1 2 3 4 5 67 8 91011>>

  /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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/
README.searchcvs.setup.mysql.txt 1 Search CVS is a tool for converting cvs commits into a mysql database, which
2 can be updated without worry of data duplication. The database is then searchable
12 3. Load database tables using .dump files provided.
  /external/junit/src/org/junit/
AfterClass.java 19 * private static DatabaseConnection database;
21 * database= ...;
30 * database.logout();
  /external/oprofile/doc/
opimport.1.in 4 opimport \- converts sample database files
15 converts sample database files from a foreign binary format (abi) to the native format.
51 The abi file description of the sample database files
  /external/srtp/crypto/include/
rdb.h 2 * replay-database.h
4 * interface for a replay database for packet security
20 * window_end-i is in the database
  /external/webkit/LayoutTests/storage/
open-database-while-transaction-in-progress.js 1 // Opens the database used in this test case
6 "Test to make sure that calling openDatabase() while a transaction is in progress on a different handle to the same database does not result in a deadlock.",
14 // than cache_size * page_size bytes in the database. The default value for
quota-tracking-expected.txt 1 UI DELEGATE DATABASE CALLBACK: exceededDatabaseQuotaForSecurityOrigin:{file, , 0} database:QuotaManagementDatabase2
2 This test checks to make sure that quotas are enforced per-origin instead of per-database, as they were prior to http://trac.webkit.org/projects/webkit/changeset/29983.
  /external/webkit/Source/WebCore/manual-tests/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/webkit/Source/WebCore/manual-tests/
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/webkit/Source/WebKit/mac/Misc/
WebIconDatabase.h 31 // Sent whenever a site icon has changed. The object of the notification is the icon database.
58 Every icon in the database has a retain count. If an icon has a retain count greater than 0, it will be written to disk for later use. If an icon's retain count equals zero it will be removed from disk. The retain count is not persistent across launches. If the WebKit client wishes to retain an icon it should retain the icon once for every launch. This is best done at initialization time before the database begins removing icons. To make sure that the database does not remove unretained icons prematurely, call delayDatabaseCleanup until all desired icons are retained. Once all are retained, call allowDatabaseCleanup.
60 Note that an icon can be retained after the database clean-up has begun. This just has to be done before the icon is removed. Icons are removed from the database whenever new icons are added to it.
62 Retention methods can be called for icons that are not yet in the database.
74 @abstract Returns a shared instance of the icon database
127 @discussion Only effective if called before the database begins removing icons.
128 delayDatabaseCleanUp increments an internal counter that when 0 begins the database clean-up
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteDatabaseLockedException.java 17 package android.database.sqlite;
20 * Thrown if the database engine was unable to acquire the
21 * database locks it needs to do its job. If the statement is a [COMMIT]
  /frameworks/base/media/java/android/mtp/
MtpServer.java 31 public MtpServer(MtpDatabase database, boolean usePtp) {
32 native_setup(database, usePtp);
62 private native final void native_setup(MtpDatabase database, boolean usePtp);
  /libcore/luni/src/main/java/java/sql/
Array.java 33 * if there is a database error.
49 * if there is a database error.
68 * if there is a database error.
81 * if there is a database error.
91 * if there is a database error.
99 * @return The database specific name or a fully-qualified SQL type name.
101 * if there is a database error.
111 * if there is a database error.
127 * if there is a database error.
145 * database error has occurred
    [all...]
ResultSet.java 28 * An interface for an object which represents a database table entry, returned
29 * as the result of the query to the database.
66 * the SQL data retrieved from the database to the Java type implied by the
155 * if a database error happens.
163 * if a database error happens.
172 * if a database error happens.
180 * if a database error happens.
188 * if a database error happens.
193 * Releases this {@code ResultSet}'s database and JDBC resources. You are
198 * connection to the database and the database itself
    [all...]
DriverManager.java 113 * database.
129 * Attempts to establish a connection to the given database URL.
132 * a URL string representing the database target to connect with.
133 * @return a {@code Connection} to the database identified by the URL.
137 * database identified by the URL.
144 * Attempts to establish a connection to the given database URL.
147 * a URL string representing the database target to connect with
154 * the corresponding database.
155 * @return a {@code Connection} to the database identified by the URL.
159 * database identified by the URL
    [all...]
Statement.java 90 * if an error occurs accessing the database or the database
96 * Cancels this statement's execution if both the database and the JDBC
102 * if an error occurs accessing the database.
110 * if an error occurs accessing the database or the database
119 * if an error occurs accessing the database.
124 * Releases this statement's database and JDBC driver resources.
134 * if an error occurs accessing the database.
151 * if an error occurs accessing the database
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
SQLiteAsyncQuery.java 19 import android.database.sqlite.SQLiteDatabase;
31 * @param db A readable database.
37 * Runs the query against the database and passes the result to the consumer.
SQLiteTransaction.java 19 import android.database.sqlite.SQLiteDatabase;
29 * @param db A writable database.
35 * Runs the transaction against the database. The results are committed if
  /external/dbus/dbus/
dbus-userdb.c 2 /* dbus-userdb.c User database abstraction
116 * Looks up a uid or username in the user database. Only one of name
119 * database and otherwise sort of sucks.
121 * @param db the database
125 * @returns the entry in the database
267 _dbus_warn ("Could not get password database information for UID of current process: %s\n",
307 * Locks global system user database.
317 * Unlocks global system user database.
327 * Gets the system global user database;
330 * @returns the database or #NULL if no memor
    [all...]

Completed in 1968 milliseconds

1 2 3 4 5 67 8 91011>>