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

12 3 4 5 6 7 8 91011>>

  /external/javasqlite/src/main/java/SQLite/
JDBCDriver.java 1 package SQLite;
32 cvers = "SQLite.JDBC1.JDBCConnection";
34 cvers = "SQLite.JDBC2.JDBCConnection";
36 cvers = "SQLite.JDBC2x.JDBCConnection";
38 cvers = "SQLite.JDBC2y.JDBCConnection";
42 cvers = "SQLite.JDBC2x.JDBCConnection";
45 cvers = "SQLite.JDBC2z.JDBCConnection";
49 cvers = "SQLite.JDBC2y.JDBCConnection";
53 cvers = "SQLite.JDBC2x.JDBCConnection";
62 java.lang.System.getProperty("SQLite.sharedcache")
    [all...]
Stmt.java 1 package SQLite;
32 public native boolean prepare() throws SQLite.Exception;
60 * } catch (SQLite.Exception e) {
69 public native boolean step() throws SQLite.Exception;
75 public native void close() throws SQLite.Exception;
82 public native void reset() throws SQLite.Exception;
88 public native void clear_bindings() throws SQLite.Exception;
96 public native void bind(int pos, int value) throws SQLite.Exception;
104 public native void bind(int pos, long value) throws SQLite.Exception;
112 public native void bind(int pos, double value) throws SQLite.Exception
    [all...]
Authorizer.java 1 package SQLite;
4 * Callback interface for SQLite's authorizer function.
Callback.java 1 package SQLite;
4 * Callback interface for SQLite's query results.
9 * class TableFmt implements SQLite.Callback {
27 * SQLite.Database db = new SQLite.Database();
41 * the SQLite engine returns the result set.<BR><BR>
50 * This is available from SQLite 2.6.0 on and needs
62 * SQLite query is aborted.<BR><BR>
  /external/chromium_org/third_party/sqlite/src/
README 3 SQLite: An Embeddable SQL Database Engine
13 tar xzf sqlite.tar.gz ;# Unpack the source tree into "sqlite"
16 ../sqlite/configure ;# Run the configure script
32 SQLite does not require TCL to run, but a TCL installation is required
33 by the makefiles. SQLite contains a lot of generated code and TCL is
39 http://www.sqlite.org/
mkextu.sh 3 # This script is used to compile SQLite into a shared library on Linux.
7 # library that is loaded into TCL in order to run SQLite.
sqlite.pc.in 8 Name: SQLite
sqlite3.pc.in 8 Name: SQLite
  /external/chromium_org/third_party/sqlite/
README.chromium 1 Name: sqlite
2 URL: http://sqlite.org/
8 Instructions for importing a new release of SQLite from sqlite.org.
16 # You may wish to consult http://www.sqlite.org/changes.html to find out what
30 # manually navigate to www.sqlite.org and find downloads, use "legacy" version.
31 wget http://www.sqlite.org/sqlite-$BASE.tar.gz
32 wget http://www.sqlite.org/sqlite-$LATEST.tar.g
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCConnection.java 1 package SQLite.JDBC2z;
7 implements java.sql.Connection, SQLite.BusyHandler {
25 * SQLite 3 VFS to use.
112 dbx.open(dbfile, readonly ? SQLite.Constants.SQLITE_OPEN_READONLY :
113 (SQLite.Constants.SQLITE_OPEN_READWRITE |
114 SQLite.Constants.SQLITE_OPEN_CREATE), vfs);
116 } catch (SQLite.Exception e) {
125 if (SQLite.Database.version().compareTo("2.6.0") >= 0) {
128 } catch (SQLite.Exception e) {
129 if (dbx.last_error() != SQLite.Constants.SQLITE_BUSY |
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteGlobal.java 17 package android.database.sqlite;
24 * Provides access to SQLite functions that affect all database connection,
28 * using sqlite3_config() then calls sqlite3_initialize() to ensure that the SQLite
32 * Verbose SQLite logging is enabled if the "log.tag.SQLiteLog" property is set to "V".
49 * Attempts to release memory by pruning the SQLite page cache and other
66 return SystemProperties.getInt("debug.sqlite.pagesize", sDefaultPageSize);
74 return SystemProperties.get("debug.sqlite.journalmode",
83 return SystemProperties.getInt("debug.sqlite.journalsizelimit",
92 return SystemProperties.get("debug.sqlite.syncmode",
101 return SystemProperties.get("debug.sqlite.wal.syncmode"
    [all...]
  /libcore/luni/src/test/java/libcore/sqlite/
OldExceptionTest.java 17 package libcore.sqlite;
19 import SQLite.Database;
20 import SQLite.Exception;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
dbapi.py 26 import sqlite3 as sqlite namespace
34 self.assertEqual(sqlite.apilevel, "2.0",
35 "apilevel is %s, should be 2.0" % sqlite.apilevel)
38 self.assertEqual(sqlite.threadsafety, 1,
39 "threadsafety is %d, should be 1" % sqlite.threadsafety)
42 self.assertEqual(sqlite.paramstyle, "qmark",
44 sqlite.paramstyle)
47 self.assertTrue(issubclass(sqlite.Warning, StandardError),
51 self.assertTrue(issubclass(sqlite.Error, StandardError),
55 self.assertTrue(issubclass(sqlite.InterfaceError, sqlite.Error)
    [all...]
regression.py 26 import sqlite3 as sqlite namespace
30 self.con = sqlite.connect(":memory:")
42 con = sqlite.connect(":memory:", detect_types=sqlite.PARSE_COLNAMES)
54 con = sqlite.connect(":memory:", cached_statements=5)
78 con = sqlite.connect(":memory:")
88 if sqlite.sqlite_version_info < (3, 2, 2):
90 con = sqlite.connect(":memory:")
95 except sqlite.DatabaseError:
100 except sqlite.OperationalError
    [all...]
hooks.py 2 # pysqlite2/test/hooks.py: tests for various SQLite-specific hooks
25 import sqlite3 as sqlite namespace
35 con = sqlite.connect(":memory:")
43 con = sqlite.connect(":memory:")
47 except sqlite.ProgrammingError, e:
51 if sqlite.version_info < (3, 2, 1): # old SQLite versions crash on this test
57 con = sqlite.connect(":memory:")
76 except sqlite.OperationalError, e:
83 con = sqlite.connect(":memory:"
    [all...]
types.py 26 import sqlite3 as sqlite namespace
35 self.con = sqlite.connect(":memory:")
85 except sqlite.ProgrammingError:
100 self.con.text_factory = sqlite.OptimizedUnicode
103 except sqlite.ProgrammingError:
122 if protocol is sqlite.PrepareProtocol:
131 self.con = sqlite.connect(":memory:", detect_types=sqlite.PARSE_DECLTYPES)
136 sqlite.converters["FLOAT"] = lambda x: 47.2
139 sqlite.converters["BOOL"] = lambda x: bool(int(x)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
dbapi.py 26 import sqlite3 as sqlite namespace
34 self.assertEqual(sqlite.apilevel, "2.0",
35 "apilevel is %s, should be 2.0" % sqlite.apilevel)
38 self.assertEqual(sqlite.threadsafety, 1,
39 "threadsafety is %d, should be 1" % sqlite.threadsafety)
42 self.assertEqual(sqlite.paramstyle, "qmark",
44 sqlite.paramstyle)
47 self.assertTrue(issubclass(sqlite.Warning, StandardError),
51 self.assertTrue(issubclass(sqlite.Error, StandardError),
55 self.assertTrue(issubclass(sqlite.InterfaceError, sqlite.Error)
    [all...]
regression.py 26 import sqlite3 as sqlite namespace
30 self.con = sqlite.connect(":memory:")
42 con = sqlite.connect(":memory:", detect_types=sqlite.PARSE_COLNAMES)
54 con = sqlite.connect(":memory:", cached_statements=5)
78 con = sqlite.connect(":memory:")
88 if sqlite.sqlite_version_info < (3, 2, 2):
90 con = sqlite.connect(":memory:")
95 except sqlite.DatabaseError:
100 except sqlite.OperationalError
    [all...]
hooks.py 2 # pysqlite2/test/hooks.py: tests for various SQLite-specific hooks
25 import sqlite3 as sqlite namespace
35 con = sqlite.connect(":memory:")
43 con = sqlite.connect(":memory:")
47 except sqlite.ProgrammingError, e:
51 if sqlite.version_info < (3, 2, 1): # old SQLite versions crash on this test
57 con = sqlite.connect(":memory:")
76 except sqlite.OperationalError, e:
83 con = sqlite.connect(":memory:"
    [all...]
types.py 26 import sqlite3 as sqlite namespace
35 self.con = sqlite.connect(":memory:")
85 except sqlite.ProgrammingError:
100 self.con.text_factory = sqlite.OptimizedUnicode
103 except sqlite.ProgrammingError:
122 if protocol is sqlite.PrepareProtocol:
131 self.con = sqlite.connect(":memory:", detect_types=sqlite.PARSE_DECLTYPES)
136 sqlite.converters["FLOAT"] = lambda x: 47.2
139 sqlite.converters["BOOL"] = lambda x: bool(int(x)
    [all...]
  /external/chromium_org/chrome/browser/webdata/
OWNERS 3 # For sqlite stuff:
  /external/chromium_org/third_party/sqlite/src/ext/icu/
README.txt 2 This directory contains source code for the SQLite "ICU" extension, an
4 SQLite. Documentation follows.
26 SQLite's built-in implementations of these two functions only
56 Similarly to the upper() and lower() functions, the built-in SQLite LIKE
70 may be used to register ICU collation sequences with SQLite. It
73 SQLite collation sequence to create. For example, to create an
74 SQLite collation sequence named "turkish" using Turkish language
96 in SQLite documentation:
116 and use it as a dynamically loadable SQLite extension. To do this
123 loaded into sqlite in the same way as any other dynamically loadabl
    [all...]
  /external/javasqlite/
Android.mk 10 LOCAL_MODULE := sqlite-jdbc
17 external/sqlite/dist
24 # This name is dictated by the fact that the SQLite code calls loadLibrary("sqlite_jni").
34 LOCAL_MODULE := sqlite-jdbc-host
  /external/sqlite/android/
Android.mk 9 external/sqlite/dist \
32 # > g++ -Wall external/sqlite/android/PhoneNumberUtils.cpp \
33 # external/sqlite/android/PhoneNumberUtilsTest.cpp
39 # (as of 2009-08-02), in which phone_number_compare() is tested via sqlite's custom
  /hardware/ti/wpan/tools/FM/
presets.db 0 SQLite format 3@ ??-?  (…)

Completed in 350 milliseconds

12 3 4 5 6 7 8 91011>>