HomeSort by relevance Sort by last modified time
    Searched full:sqlite3 (Results 1 - 25 of 231) sorted by null

1 2 3 4 5 6 7 8 910

  /external/webkit/WebKitLibraries/WebCoreSQLite3/
sqlite3ext.h 16 ** sqlite3.h.
22 #include "sqlite3.h"
44 int (*busy_handler)(sqlite3*,int(*)(void*,int),void*);
45 int (*busy_timeout)(sqlite3*,int ms);
46 int (*changes)(sqlite3*);
47 int (*close)(sqlite3*);
48 int (*collation_needed)(sqlite3*,void*,void(*)(void*,sqlite3*,int eTextRep,const char*));
49 int (*collation_needed16)(sqlite3*,void*,void(*)(void*,sqlite3*,int eTextRep,const void*))
    [all...]
sqlite3.h 30 ** the version number) and changes its name to "sqlite3.h" as
60 ** The version of the SQLite library is contained in the sqlite3.h
93 ** if you compile your program using an sqlite3.h header from a
111 ** opaque structure named "sqlite3". It is useful to think of an sqlite3
118 typedef struct sqlite3 sqlite3; typedef in typeref:struct:sqlite3
161 int sqlite3_close(sqlite3 *);
215 sqlite3*, /* An open database */
323 int sqlite3_extended_result_codes(sqlite3*, int onoff)
    [all...]
  /libcore/sqlite-jdbc/src/main/java/SQLite/
Stmt.java 4 * Class to represent compiled SQLite3 statement.
15 * Internal handle for the SQLite3 statement.
35 * Perform one step of compiled SQLite3 statement.
72 * Close the compiled SQLite3 statement.
78 * Reset the compiled SQLite3 statement without
85 * Clear all bound parameters of the compiled SQLite3 statement.
91 * Bind positional integer value to compiled SQLite3 statement.
99 * Bind positional long value to compiled SQLite3 statement.
107 * Bind positional double value to compiled SQLite3 statement.
115 * Bind positional byte array to compiled SQLite3 statement
    [all...]
FunctionContext.java 51 * Only provided by SQLite3 databases.
60 * Only provided by SQLite3 databases.
Database.java 83 * @param ver2 flag to force version on create (false = SQLite3, true = SQLite2)
531 * Return last error message of SQLite3 engine.
631 * Prepare and return SQLite3 statement for SQL. Only available
647 * Open an SQLite3 blob. Only available in SQLite 3.4.0 and above.
667 * @return true if SQLite3 database
692 * Internal SQLite3 prepare method.
732 * right after open() on SQLite3 databases.
746 * right after open() on SQLite3 databases.
770 * SQLite3 database must have been open()ed.
784 * SQLite3 database must have been open()ed
    [all...]
  /external/sqlite/android/
sqlite3_android.h 20 #include <sqlite3.h>
26 int register_android_functions(sqlite3 * handle, int uit16Storage);
28 int register_localized_collators(sqlite3* handle, const char* systemLocale, int utf16Storage);
  /frameworks/base/core/jni/
sqlite3_exception.h 25 #include <sqlite3.h>
30 void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle);
38 void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle, const char* message);
android_database_SQLiteStatement.cpp 25 #include <sqlite3.h>
39 sqlite3 * handle, jstring sqlString);
48 (sqlite3 *)env->GetIntField(object, gHandleField)
54 sqlite3 * handle = GET_HANDLE(env, object);
72 sqlite3 * handle = GET_HANDLE(env, object);
96 sqlite3 * handle = GET_HANDLE(env, object);
android_database_SQLiteDatabase.cpp 28 #include <sqlite3.h>
80 // register the logging func on sqlite. needs to be done BEFORE any sqlite3 func is called.
100 sqlite3 * handle = NULL;
105 // register the logging func on sqlite. needs to be done BEFORE any sqlite3 func is called.
179 static char *getDatabaseName(JNIEnv* env, sqlite3 * handle, jstring databaseName) {
197 sqlite3 * handle = (sqlite3 *)env->GetIntField(object, offset_db_handle);
209 sqlite3 * handle = (sqlite3 *)env->GetIntField(object, offset_db_handle);
217 sqlite3 * handle = (sqlite3 *)env->GetIntField(object, offset_db_handle)
    [all...]
android_database_SQLiteCompiledSql.cpp 24 #include <sqlite3.h>
44 (sqlite3 *)env->GetIntField(object, gHandleField)
48 sqlite3 * handle, jstring sqlString)
android_database_SQLiteProgram.cpp 24 #include <sqlite3.h>
44 (sqlite3 *)env->GetIntField(object, gHandleField)
  /external/sqlite/dist/
Android.mk 9 common_src_files := sqlite3.c
67 ## Build the device command line tool sqlite3
70 ifneq ($(SDK_ONLY),true) # SDK doesn't need device version of sqlite3
91 LOCAL_MODULE := sqlite3
100 ## Build the host command line tool sqlite3
136 LOCAL_MODULE := sqlite3
  /frameworks/base/core/java/android/database/sqlite/
package.html 16 <p>Android ships with the sqlite3 database tool in the <code>tools/</code>
18 typing <code>sqlite3</code> in a shell window.
  /external/webkit/WebCore/platform/sql/
SQLiteDatabase.h 37 struct sqlite3;
99 sqlite3* sqlite3Handle() const {
118 sqlite3* m_db;
SQLiteFileSystem.cpp 37 #include <sqlite3.h>
49 int SQLiteFileSystem::openDatabase(const String& fileName, sqlite3** database)
SQLiteFileSystem.h 37 struct sqlite3;
55 static int openDatabase(const String& fileName, sqlite3** database);
SQLiteAuthorizer.cpp 31 #include <sqlite3.h>
  /external/webkit/WebCore/Configurations/
WebCore.xcconfig 60 SQLITE3_LIBRARY_1060 = sqlite3;
61 SQLITE3_LIBRARY_1070 = sqlite3;
  /libcore/sqlite-jdbc/src/main/native/
sqlite_jni.c 13 #include "sqlite3.h"
54 int is3; /* True for SQLITE3 handle */
74 struct hbl *blobs; /* SQLite3 blob handles */
83 int is3; /* True for SQLITE3 handle */
99 int is3; /* True for SQLITE3 handle */
103 int tail_len; /* only for SQLite3/prepare */
114 sqlite3_blob *blob; /* SQLite3 blob */
784 sqlite3_close((sqlite3 *) h->sqlite);
793 sqlite3_close((sqlite3 *) h->sqlite);
858 sqlite3_busy_timeout((sqlite3 * ) h->sqlite, ms)
    [all...]
  /libcore/luni/src/test/java/tests/SQLite/
AllTests.java 24 //All tests executed with sqlite3 only
  /external/webkit/WebCore/platform/sql/chromium/
SQLiteFileSystemChromium.cpp 37 #include <sqlite3.h>
51 int SQLiteFileSystem::openDatabase(const String& fileName, sqlite3** database)
  /external/webkit/WebKit/wx/
wscript 47 'lib/sqlite3.dll', 'bin/libxml2.dll', 'bin/libxslt.dll', 'bin/iconv.dll',
93 uselib = 'WX CURL ICU XSLT XML SQLITE3 WEBCORE JSCORE ' + get_config(),
  /bionic/
CleanSpec.mk 22 # $(call add-clean-step, touch -c external/sqlite/sqlite3.h)
  /bootable/bootloader/legacy/
CleanSpec.mk 22 # $(call add-clean-step, touch -c external/sqlite/sqlite3.h)
  /bootable/diskinstaller/
CleanSpec.mk 22 # $(call add-clean-step, touch -c external/sqlite/sqlite3.h)

Completed in 627 milliseconds

1 2 3 4 5 6 7 8 910