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

1 2 3 4 5 6 7 891011>>

  /frameworks/base/core/java/android/database/sqlite/
SQLiteTableLockedException.java 17 package android.database.sqlite;
SQLiteTransactionListener.java 17 package android.database.sqlite;
SQLiteCursorDriver.java 17 package android.database.sqlite;
20 import android.database.sqlite.SQLiteDatabase.CursorFactory;
SQLiteDirectCursorDriver.java 17 package android.database.sqlite;
20 import android.database.sqlite.SQLiteDatabase.CursorFactory;
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseErrorHandlerTest.java 20 import android.database.sqlite.SQLiteDatabase;
21 import android.database.sqlite.SQLiteDiskIOException;
22 import android.database.sqlite.SQLiteException;
79 * this test used to produce a corrupted db. but with new sqlite it instead reports
  /frameworks/base/docs/html/sdk/api_diff/16/changes/
methods_index_removals.html 74 <nobr><A HREF="android.database.sqlite.SQLiteProgram.html#android.database.sqlite.SQLiteProgram.compile_removed(java.lang.String, boolean)" class="hiddenlink" target="rightframe"><strike>compile</strike>
117 <nobr><A HREF="android.database.sqlite.SQLiteProgram.html#android.database.sqlite.SQLiteProgram.native_bind_blob_removed(int, byte[])" class="hiddenlink" target="rightframe"><strike>native_bind_blob</strike>
119 <nobr><A HREF="android.database.sqlite.SQLiteProgram.html#android.database.sqlite.SQLiteProgram.native_bind_double_removed(int, double)" class="hiddenlink" target="rightframe"><strike>native_bind_double</strike>
121 <nobr><A HREF="android.database.sqlite.SQLiteProgram.html#android.database.sqlite.SQLiteProgram.native_bind_long_removed(int, long)" class="hiddenlink" target="rightframe"><strike>native_bind_long</strike>
123 <nobr><A HREF="android.database.sqlite.SQLiteProgram.html#android.database.sqlite.SQLiteProgram.native_bind_null_removed(int)" class="hiddenlink" target="rightframe"><strike>native (…)
    [all...]
fields_index_removals.html 55 <nobr><A HREF="android.database.sqlite.SQLiteProgram.html#android.database.sqlite.SQLiteProgram.mDatabase" class="hiddenlink" target="rightframe"><strike>mDatabase</strike></A>
64 <nobr><A HREF="android.database.sqlite.SQLiteProgram.html#android.database.sqlite.SQLiteProgram.nHandle" class="hiddenlink" target="rightframe"><strike>nHandle</strike></A>
66 <nobr><A HREF="android.database.sqlite.SQLiteProgram.html#android.database.sqlite.SQLiteProgram.nStatement" class="hiddenlink" target="rightframe"><strike>nStatement</strike></A>
  /libcore/luni/src/test/java/libcore/sqlite/
OldBlobTest.java 17 package libcore.sqlite;
19 import SQLite.Blob;
20 import SQLite.Database;
21 import SQLite.Exception;
  /packages/apps/Contacts/src/com/android/contacts/util/
PhonebookCollatorFactory.java 24 * collator is the same as the one that is used in sqlite.
  /external/chromium/app/sql/
transaction.h 27 // Begins the transaction. This uses the default sqlite "deferred" transaction
40 // false if sqlite could not commit it, or if another transaction in the
  /external/chromium/chrome/browser/sync/syncable/
directory_backing_store.h 93 // Returns an sqlite return code, usually SQLITE_DONE.
97 // is_temporary. Returns an sqlite
103 // Returns an sqlite return code, SQLITE_DONE on success.
105 // Returns an sqlite return code, SQLITE_DONE on success.
119 // Save/update helpers for entries. Return false if sqlite commit fails.
124 // Creates a new sqlite3 handle to the backing database. Sets sqlite operation
126 // said handle. Returns true on success, false if the sqlite open operation
182 // The handle to our sqlite on-disk store for initialization and loading, and
  /external/chromium_org/components/webdata/common/
web_database.h 21 // This class manages a SQLite database that stores various web page meta data.
42 // Initialize the database given a name. The name defines where the SQLite
  /external/chromium_org/sql/
transaction.h 30 // Begins the transaction. This uses the default sqlite "deferred" transaction
43 // false if sqlite could not commit it, or if another transaction in the
  /external/chromium_org/third_party/sqlite/src/test/
init.test 12 # This file implements regression tests for SQLite library. The
69 if {[string match "SQLITE*NOMEM" $rc]} {error "out of memory"}
mutex2.test 49 # require that SQLite be initialized. Verify that they fail.
53 set rc [catch {sqlite db test.db} msg]
walbig.test 11 # This file implements regression tests for SQLite library. The
12 # focus of this script testing the ability of SQLite to handle database
  /external/chromium_org/third_party/sqlite/src/tool/
genfkey.README 4 The SQLite library is capable of parsing SQL foreign key constraints
7 implemented using SQL triggers, which SQLite does support. This text
8 file describes a feature of the SQLite shell tool (sqlite3) that
9 extracts foreign key definitions from an existing SQLite database and
48 are supported: "RESTRICT" (the default), "CASCADE" and "SET NULL". SQLite
84 * SQLite does not support recursive triggers, and therefore this program
101 When this command is run, it first checks the schema of the open SQLite
136 sqlite> .genfkey --exec
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
H2Map.java 35 // Map 'autoincrement' (sqlite) to 'auto_increment' (h2).
37 // Map 'integer' (sqlite) to 'bigint(19)' (h2).
  /frameworks/base/docs/html/training/basics/data-storage/
index.jd 38 <li>Using databases managed by SQLite</li>
54 <dd>Learn to use a SQLite database to read and write structured data.</dd>
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
AggregatorStorage.java 21 import android.database.sqlite.SQLiteDatabase;
22 import android.database.sqlite.SQLiteOpenHelper;
  /libcore/luni/src/test/java/libcore/java/sql/
OldDriverPropertyInfoTest.java 30 static final String connectionURL = "jdbc:sqlite:/" + "Test.db";
31 static final String classname = "SQLite.JDBCDriver";
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ProfileDatabaseHelper.java 21 import android.database.sqlite.SQLiteDatabase;
34 // SQLite-standard table and columns for tracking autoincrement sequences.
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteProgramTest.java 17 package android.database.sqlite.cts;
22 import android.database.sqlite.SQLiteDatabase;
23 import android.database.sqlite.SQLiteDoneException;
24 import android.database.sqlite.SQLiteException;
25 import android.database.sqlite.SQLiteQuery;
26 import android.database.sqlite.SQLiteStatement;
  /external/chromium_org/third_party/sqlite/
memcmp.patch 2 due to memcmp() being used instead of strcmp() in SQLite. Reported to
3 SQLite team, resulting in http://www.sqlite.org/src/info/d73435587b .
4 This was backported into Chromium's version of SQLite, then this file
6 git diff --relative=third_party/sqlite/src --src-prefix='' --dst-prefix='' > third_party/sqlite/memcmp.patch
  /external/chromium_org/third_party/sqlite/src/
Makefile.arm-wince-mingw32ce-gcc 3 # Makefile for SQLITE
5 # This is a template makefile for SQLite. Most people prefer to
23 TOP = ../sqlite
37 #### If you want the SQLite library to be safe for use within a
59 # SQLite uses some expensive assert() statements in the inner loop.
117 #### Additional objects for SQLite library when TCL support is enabled.

Completed in 473 milliseconds

1 2 3 4 5 6 7 891011>>