HomeSort by relevance Sort by last modified time
    Searched full:sqlite (Results 226 - 250 of 1891) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/sql/
connection.h 98 // From sqlite.org: "The page size must be a power of two greater than or
103 // Sets the number of pages that will be cached in memory by sqlite. The
109 // normal" flag because of some additional requirements sqlite puts on this
143 // for SQLite error codes and database version numbers.
155 // statement - per the SQLite documentation, if no errors are found the
210 // fresh database from scratch, within the constraints of SQLite's
221 // - a SQLite issue occurs which is structural in nature (like the
243 // BeginTransaction()), closes the SQLite database, and poisons the
271 // nested transactions since sqlite can't do nested transactions. The
293 // SQLite supports attaching multiple database files to a singl
    [all...]
  /frameworks/base/docs/html/guide/topics/data/
data-storage.jd 14 <li>Use SQLite databases for structured storage</li>
49 <dt><a href="#db">SQLite Databases</a></dt>
432 <p>Android provides full support for <a href="http://www.sqlite.org/">SQLite</a> databases.
436 <p>The recommended method to create a new SQLite database is to create a subclass of {@link
437 android.database.sqlite.SQLiteOpenHelper} and override the {@link
438 android.database.sqlite.SQLiteOpenHelper#onCreate(SQLiteDatabase) onCreate()} method, in which you
439 can execute a SQLite command to create tables in the database. For example:</p>
462 <p>You can then get an instance of your {@link android.database.sqlite.SQLiteOpenHelper}
464 {@link android.database.sqlite.SQLiteOpenHelper#getWritableDatabase()} and {@lin
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/16/changes/
alldiffs_index_removals.html 80 <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>
137 <nobr><A HREF="android.database.sqlite.SQLiteProgram.html#android.database.sqlite.SQLiteProgram.mDatabase" class="hiddenlink" target="rightframe"><strike>mDatabase</strike></A>
156 <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>
159 <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>
162 <nobr><A HREF="android.database.sqlite.SQLiteProgram.html#android.database.sqlite.SQLiteProgram.native_bind_long_removed(int, long)" class="hiddenlink" target="rightframe"><strike> (…)
    [all...]
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.query_added(android.database.sqlite.SQLiteDatabase, java.lang.String[], java.lang.String, java.lang.String[], java.lang.String, java.lang.String, java.lang.String, java.lang.String, android.os.CancellationSignal)"></A>
87 <nobr><code>Cursor</code>&nbsp;<A HREF="../../../../reference/android/database/sqlite/SQLiteQueryBuilder.html#query(android.database.sqlite.SQLiteDatabase, java.lang.String[], java.lang.String, java.lang.String[], java.lang.String, java.lang.String, java.lang.String, java.lang.String, android.os.CancellationSignal)" target="_top"><code>query</code></A>(<code>SQLiteDatabase,</nobr> String[]<nobr>,</nobr> String<nobr>,</nobr> String[]<nobr>,</nobr> String<nobr>,</nobr> String<nobr>,</nobr> String<nobr>,</nobr> String<nobr>,</nobr> CancellationSignal<nobr><nobr></code>)</nobr>
android.database.sqlite.SQLiteException.html 10 android.database.sqlite.SQLiteException
74 Class android.database.sqlite.<A HREF="../../../../reference/android/database/sqlite/SQLiteException.html" target="_top"><font size="+2"><code>SQLiteException</code></font></A>
85 <A NAME="android.database.sqlite.SQLiteException.ctor_added(java.lang.String, java.lang.Throwable)"></A>
86 <nobr><A HREF="../../../../reference/android/database/sqlite/SQLiteException.html#SQLiteException(java.lang.String, java.lang.Throwable)" target="_top"><code>SQLiteException</code></A>(<code>String,</nobr> Throwable<nobr><nobr></code>)</nobr>
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c 2 ** This file is an amalgamation of many separate C source files from SQLite
7 ** of 5% or more are commonly seen when SQLite is compiled as a single
10 ** This file is all you need to compile SQLite. To use SQLite in other
12 ** the programming interface to the SQLite library. (If you do not have
16 ** if you want a wrapper to interface SQLite with your choice of programming
18 ** separate file. This file contains only code for the core SQLite library.
40 ** Internal interface definitions for SQLite.
95 ** This file defines various limits of what SQLite can process.
221 ** Earlier versions of SQLite allowed the user to change this value a
    [all...]
sqlite3.h 12 ** This header file defines the interface that the SQLite library
15 ** not a published API of SQLite, is subject to change without
16 ** notice, and should not be referenced by programs that use SQLite.
20 ** features recently added to SQLite. We do not anticipate changes
24 ** The official C-language API documentation for SQLite is derived
26 ** on how SQLite interfaces are suppose to operate.
28 ** The name of this file under configuration management is "sqlite.h.in".
87 ** evaluates to a string literal that is the SQLite version in the
93 ** The SQLITE_VERSION_NUMBER for any given release of SQLite will also
98 ** Since version 3.6.18, SQLite source code has been stored in th
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
SQLiteStatement.cpp 27 #include "modules/webdatabase/sqlite/SQLiteStatement.h"
31 #include "modules/webdatabase/sqlite/SQLValue.h"
35 // SQLite 3.6.16 makes sqlite3_prepare_v2 automatically retry preparing the statement
38 #error SQLite version 3.6.16 or newer is required
69 // this lets SQLite avoid an extra string copy.
140 // SQLite treats uses zero pointers to represent null strings, which means we need to make sure to map null WTFStrings to zero pointers.
214 // SQLite is typed per value. optional column types are
  /external/chromium_org/third_party/sqlite/src/test/
fts3query.test 33 INSERT INTO t1 VALUES('The source code for SQLite is in the public');
39 } {{The source code for SQLite is in the public}}
41 SELECT * FROM t1 WHERE t1 MATCH 'sqlite'
42 } {{The source code for SQLite is in the public}}
48 } {{The source code for SQLite is in the public}}
50 SELECT * FROM t1 WHERE t1 MATCH 'sqlite'
51 } {{The source code for SQLite is in the public}}
threadtest1.c 13 ** or not the SQLite library is threadsafe.
15 ** Testing the thread safety of SQLite is difficult because there are very
21 ** This file is NOT part of the standard SQLite library. It is used for
24 #include "sqlite.h"
102 char **db_query(sqlite *db, const char *zFile, const char *zFormat, ...){
137 void db_execute(sqlite *db, const char *zFile, const char *zFormat, ...){
200 sqlite *db;
corrupt7.test 11 # This file implements regression tests for SQLite library.
13 # This file implements tests to make sure SQLite does not crash or
120 # # stored in the index cell. At one point this was causing sqlite to
  /frameworks/base/docs/html/sdk/api_diff/11/changes/
android.database.sqlite.SQLiteProgram.html 10 android.database.sqlite.SQLiteProgram
74 Class android.database.sqlite.<A HREF="../../../../reference/android/database/sqlite/SQLiteProgram.html" target="_top"><font size="+2"><code>SQLiteProgram</code></font></A>
86 <A NAME="android.database.sqlite.SQLiteProgram.bindAllArgsAsStrings_added(java.lang.String[])"></A>
87 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/database/sqlite/SQLiteProgram.html#bindAllArgsAsStrings(java.lang.String[])" target="_top"><code>bindAllArgsAsStrings</code></A>(<code>String[]</code>)</nobr>
101 <A NAME="android.database.sqlite.SQLiteProgram.getUniqueId_changed()"></A>
102 <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/android/database/sqlite/SQLiteProgram.html#getUniqueId()" target="_top"><code>getUniqueId</code></A>() </nobr>
  /frameworks/base/docs/html/sdk/api_diff/3/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.yieldIfContendedSafely_added()"></A>
87 <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/database/sqlite/SQLiteDatabase.html#yieldIfContendedSafely()" target="_top"><code>yieldIfContendedSafely</code></A>()</nobr>
101 <A NAME="android.database.sqlite.SQLiteDatabase.yieldIfContended_changed()"></A>
102 <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/database/sqlite/SQLiteDatabase.html#yieldIfContended()" target="_top"><code>yieldIfContended</code></A>() </nobr>
  /external/sqlite/dist/orig/
sqlite3.h 12 ** This header file defines the interface that the SQLite library
15 ** not a published API of SQLite, is subject to change without
16 ** notice, and should not be referenced by programs that use SQLite.
20 ** features recently added to SQLite. We do not anticipate changes
24 ** The official C-language API documentation for SQLite is derived
26 ** on how SQLite interfaces are suppose to operate.
28 ** The name of this file under configuration management is "sqlite.h.in".
87 ** evaluates to a string literal that is the SQLite version in the
93 ** The SQLITE_VERSION_NUMBER for any given release of SQLite will also
98 ** Since version 3.6.18, SQLite source code has been stored in th
    [all...]
  /external/sqlite/dist/
sqlite3.h 12 ** This header file defines the interface that the SQLite library
15 ** not a published API of SQLite, is subject to change without
16 ** notice, and should not be referenced by programs that use SQLite.
20 ** features recently added to SQLite. We do not anticipate changes
24 ** The official C-language API documentation for SQLite is derived
26 ** on how SQLite interfaces are suppose to operate.
28 ** The name of this file under configuration management is "sqlite.h.in".
87 ** evaluates to a string literal that is the SQLite version in the
93 ** The SQLITE_VERSION_NUMBER for any given release of SQLite will also
98 ** Since version 3.6.18, SQLite source code has been stored in th
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
mutex_unix.c 67 ** On those platforms where pthread_equal() is not atomic, SQLite
90 ** that means that a mutex could not be allocated. SQLite
110 ** not want to. But SQLite will only request a recursive mutex in
117 ** used by the current version of SQLite. Future versions of SQLite
119 ** use by SQLite only. Applications that use SQLite mutexes should
187 ** allocated mutex. SQLite is careful to deallocate every
305 ** is not currently allocated. SQLite will never do either.
mutex_w32.c 147 ** that means that a mutex could not be allocated. SQLite
167 ** not want to. But SQLite will only request a recursive mutex in
174 ** used by the current version of SQLite. Future versions of SQLite
176 ** use by SQLite only. Applications that use SQLite mutexes should
218 ** allocated mutex. SQLite is careful to deallocate every
268 ** first doing some #defines that prevent SQLite from building on Win98.
293 ** is not currently allocated. SQLite will never do either.
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
README 2 This directory contains an SQLite extension that implements a virtual
4 data structures inside of SQLite databases. Users create, populate
24 3 and 11. Unlike regular SQLite tables, r-tree tables are strongly
102 and use it as a dynamically loadable SQLite extension. To do this
109 loaded into sqlite in the same way as any other dynamicly loadable
  /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>&nbsp;<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>&nbsp;<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/5/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="../../../../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>
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteFtsTest.java 17 package android.database.sqlite.cts;
23 import android.database.sqlite.SQLiteDatabase;
29 * Tests to verify FTS3/4 SQLite support.
  /external/chromium_org/sql/test/
test_helpers.h 27 // SQLite stores the database size in the header, and if the actual
72 // Creates a SQLite database at |db_path| from the sqlite .dump output

Completed in 1232 milliseconds

1 2 3 4 5 6 7 8 91011>>