Home
last modified time | relevance | path

Searched refs:SQLite (Results 1 – 25 of 74) sorted by relevance

123

/external/javasqlite/src/main/java/SQLite/
DStmt.java1 package SQLite; package
32 public native boolean prepare() throws SQLite.Exception; in prepare()
69 public native boolean step() throws SQLite.Exception; in step()
75 public native void close() throws SQLite.Exception; in close()
82 public native void reset() throws SQLite.Exception; in reset()
88 public native void clear_bindings() throws SQLite.Exception; in clear_bindings()
96 public native void bind(int pos, int value) throws SQLite.Exception; in bind()
104 public native void bind(int pos, long value) throws SQLite.Exception; in bind()
112 public native void bind(int pos, double value) throws SQLite.Exception; in bind()
120 public native void bind(int pos, byte[] value) throws SQLite.Exception; in bind()
[all …]
DDatabase.java1 package SQLite; package
28 public void open(String filename, int mode) throws SQLite.Exception { in open()
30 mode = SQLite.Constants.SQLITE_OPEN_READWRITE | in open()
31 SQLite.Constants.SQLITE_OPEN_CREATE; in open()
33 mode = SQLite.Constants.SQLITE_OPEN_READONLY; in open()
38 } catch (SQLite.Exception se) { in open()
57 throws SQLite.Exception { in open()
59 mode = SQLite.Constants.SQLITE_OPEN_READWRITE | in open()
60 SQLite.Constants.SQLITE_OPEN_CREATE; in open()
62 mode = SQLite.Constants.SQLITE_OPEN_READONLY; in open()
[all …]
DBackup.java1 package SQLite; package
19 protected void finish() throws SQLite.Exception { in finish()
33 } catch (SQLite.Exception e) { in finalize()
38 protected native void _finalize() throws SQLite.Exception; in _finalize()
47 public boolean step(int n) throws SQLite.Exception { in step()
53 private native boolean _step(int n) throws SQLite.Exception; in _step()
59 public void backup() throws SQLite.Exception { in backup()
69 public int remaining() throws SQLite.Exception { in remaining()
75 private native int _remaining() throws SQLite.Exception; in _remaining()
81 public int pagecount() throws SQLite.Exception { in pagecount()
[all …]
DVm.java1 package SQLite; package
47 public native boolean step(Callback cb) throws SQLite.Exception; in step()
55 public native boolean compile() throws SQLite.Exception; in compile()
61 public native void stop() throws SQLite.Exception; in stop()
DJDBCDriver.java1 package SQLite; package
65 sharedCache = SQLite.Database._enable_shared_cache(true);
DProgressHandler.java1 package SQLite; package
DTrace.java1 package SQLite; package
DBusyHandler.java1 package SQLite; package
DProfile.java1 package SQLite; package
DException.java1 package SQLite; package
DCallback.java1 package SQLite; package
DAuthorizer.java1 package SQLite; package
DFunction.java1 package SQLite; package
DFunctionContext.java1 package SQLite; package
/external/javasqlite/src/main/java/SQLite/JDBC2z/
DJDBCConnection.java1 package SQLite.JDBC2z;
7 implements java.sql.Connection, SQLite.BusyHandler {
112 dbx.open(dbfile, readonly ? SQLite.Constants.SQLITE_OPEN_READONLY : in open()
113 (SQLite.Constants.SQLITE_OPEN_READWRITE | in open()
114 SQLite.Constants.SQLITE_OPEN_CREATE), vfs); in open()
116 } catch (SQLite.Exception e) { in open()
125 if (SQLite.Database.version().compareTo("2.6.0") >= 0) { in open()
128 } catch (SQLite.Exception e) { in open()
129 if (dbx.last_error() != SQLite.Constants.SQLITE_BUSY || in open()
133 } catch (SQLite.Exception ee) { in open()
[all …]
DJDBCDatabaseMetaData.java1 package SQLite.JDBC2z;
55 return SQLite.Database.version(); in getDatabaseProductVersion()
63 return "" + SQLite.JDBCDriver.MAJORVERSION + "." + in getDriverVersion()
64 SQLite.Constants.drv_minor; in getDriverVersion()
68 return SQLite.JDBCDriver.MAJORVERSION; in getDriverMajorVersion()
72 return SQLite.Constants.drv_minor; in getDriverMinorVersion()
523 sb.append(SQLite.Shell.sql_quote(tableNamePattern)); in getTables()
536 sb.append(SQLite.Shell.sql_quote(types[i].toLowerCase())); in getTables()
555 SQLite.TableResult tr = new SQLite.TableResult(); in getSchemas()
565 SQLite.TableResult tr = new SQLite.TableResult(); in getCatalogs()
[all …]
DJDBCResultSet.java1 package SQLite.JDBC2z;
16 protected SQLite.TableResult tr;
72 SQLite.Database.version().compareTo("2.5.0") < 0;
74 public JDBCResultSet(SQLite.TableResult tr, JDBCStatement s) {
319 return new java.sql.Time(SQLite.Database.long_from_julian(lastg));
327 return new java.sql.Time(SQLite.Database.long_from_julian(lastg));
368 return new java.sql.Timestamp(SQLite.Database.long_from_julian(lastg));
376 return new java.sql.Timestamp(SQLite.Database.long_from_julian(lastg));
419 return new java.sql.Date(SQLite.Database.long_from_julian(lastg));
427 return new java.sql.Date(SQLite.Database.long_from_julian(lastg));
[all …]
DTableResultX.java1 package SQLite.JDBC2z;
6 public class TableResultX extends SQLite.TableResult {
25 public TableResultX(SQLite.TableResult tr) { in TableResultX()
DJDBCStatement.java1 package SQLite.JDBC2z;
87 SQLite.TableResult tr = null; in executeQuery()
118 } catch (SQLite.Exception e) { in executeQuery()
120 conn.db.last_error() == SQLite.Constants.SQLITE_BUSY && in executeQuery()
127 } catch (SQLite.Exception ee) { in executeQuery()
DJDBCPreparedStatement.java1 package SQLite.JDBC2z;
29 SQLite.Database.version().compareTo("2.5.0") < 0;
222 args[parameterIndex - 1] = SQLite.StringEncoder.encodeX(x);
225 args[parameterIndex - 1] = SQLite.StringEncoder.encode(x);
239 …args[parameterIndex - 1] = java.lang.Double.toString(SQLite.Database.julian_from_long(x.getTime())…
256 …args[parameterIndex - 1] = java.lang.Double.toString(SQLite.Database.julian_from_long(x.getTime())…
273 …args[parameterIndex - 1] = java.lang.Double.toString(SQLite.Database.julian_from_long(x.getTime())…
322 SQLite.StringEncoder.encodeX(bx);
326 args[parameterIndex - 1] = SQLite.StringEncoder.encode(bx);
346 SQLite.StringEncoder.encodeX(bx);
[all …]
/external/python/cpython2/Doc/library/
Dsqlite3.rst1 :mod:`sqlite3` --- DB-API 2.0 interface for SQLite databases
5 :synopsis: A DB-API 2.0 implementation using SQLite 3.x.
11 SQLite is a C library that provides a lightweight disk-based database that
14 SQLite for internal data storage. It's also possible to prototype an
15 application using SQLite and then port the code to a larger database such as
105 The SQLite web page; the documentation describes the syntax and the
124 the SQLite library.
129 version of the SQLite library.
133 The version number of the run-time SQLite library, as a string.
137 The version number of the run-time SQLite library, as a tuple of integers.
[all …]
/external/python/cpython3/Doc/library/
Dsqlite3.rst1 :mod:`sqlite3` --- DB-API 2.0 interface for SQLite databases
5 :synopsis: A DB-API 2.0 implementation using SQLite 3.x.
13 SQLite is a C library that provides a lightweight disk-based database that
16 SQLite for internal data storage. It's also possible to prototype an
17 application using SQLite and then port the code to a larger database such as
107 The SQLite web page; the documentation describes the syntax and the
126 the SQLite library.
132 version of the SQLite library.
137 The version number of the run-time SQLite library, as a string.
142 The version number of the run-time SQLite library, as a tuple of integers.
[all …]
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/util/
DSQLiteLibraryLoader.java3 import com.almworks.sqlite4java.SQLite;
86 SQLite.setLibraryPath(libPath.getAbsolutePath()); in loadFromDirectory()
88 …log("SQLite version: library " + SQLite.getLibraryVersion() + " / core " + SQLite.getSQLiteVersion… in loadFromDirectory()
/external/sqlite/dist/
DREADME-Android1 SQLite on Android
3 The Android port of SQLite contains a few customizations.
/external/wpa_supplicant_8/hostapd/
Dhlr_auc_gw.txt17 Alternatively, hlr_auc_gw can be built with support for an SQLite
36 -D<DB file> = path to SQLite database
40 The SQLite database can be initialized with sqlite, e.g., by running
67 pseudonyms and reauth information into a SQLite database. This is

123