/external/javasqlite/src/main/java/SQLite/ |
D | Stmt.java | 1 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 …]
|
D | Database.java | 1 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 …]
|
D | Backup.java | 1 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 …]
|
D | Vm.java | 1 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()
|
D | ProgressHandler.java | 1 package SQLite; package
|
D | Trace.java | 1 package SQLite; package
|
D | BusyHandler.java | 1 package SQLite; package
|
D | Profile.java | 1 package SQLite; package
|
D | JDBCDriver.java | 1 package SQLite; package 65 sharedCache = SQLite.Database._enable_shared_cache(true);
|
D | Exception.java | 1 package SQLite; package
|
D | Callback.java | 1 package SQLite; package
|
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
D | JDBCConnection.java | 1 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 …]
|
D | JDBCDatabaseMetaData.java | 1 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 …]
|
D | TableResultX.java | 1 package SQLite.JDBC2z; 6 public class TableResultX extends SQLite.TableResult { 25 public TableResultX(SQLite.TableResult tr) { in TableResultX()
|
D | JDBCResultSet.java | 1 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 …]
|
D | JDBCStatement.java | 1 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()
|
D | JDBCPreparedStatement.java | 1 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/rust/crates/rusqlite/ |
D | README.md | 12 Rusqlite is an ergonomic wrapper for using SQLite from Rust. It attempts to expose 62 ### Supported SQLite Versions 64 The base `rusqlite` package supports SQLite version 3.6.8 or newer. If you need 66 newer SQLite version; see details below. 74 allows loading dynamic library-based SQLite extensions. 76 allows use of SQLite's online backup API. Note: This feature requires SQLite 3.6.11 or later. 78 allows you to load Rust closures into SQLite connections for use in queries. 79 Note: This feature requires SQLite 3.7.3 or later. 81 allows hooks into SQLite's tracing and profiling APIs. Note: This feature 82 requires SQLite 3.6.23 or later. [all …]
|
D | Changelog.md | 14 * Update the bundled SQLite version to 3.24.0 (#326). 36 * New `sqlcipher` feature allows linking against SQLCipher instead of SQLite. 41 * Defines HAVE\_USLEEP when building with a bundled SQLite (#263). 48 * Avoid publicly exporting SQLite constants multiple times from libsqlite3-sys. 53 * Updates the `bundled` SQLite version to 3.17.0. 61 * Adds `version()` and `version_number()` functions for querying the version of SQLite in use. 64 precense of all expected SQLite constants and functions. 65 * Clarifies supported SQLite versions. Running with SQLite older than 3.6.8 now panics, and 66 some features will not compile unless a sufficiently-recent SQLite version is used. See 68 * When running with SQLite 3.6.x, rusqlite attempts to perform SQLite initialization. If it fails, [all …]
|
D | clippy.toml | 1 doc-valid-idents = ["SQLite", "lang_transaction"]
|
/external/python/cpython2/Doc/library/ |
D | sqlite3.rst | 1 :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/ |
D | sqlite3.rst | 1 :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/ |
D | SQLiteLibraryLoader.java | 3 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/ |
D | README-Android | 1 SQLite on Android 3 The Android port of SQLite contains a few customizations.
|
/external/wpa_supplicant_8/hostapd/ |
D | hlr_auc_gw.txt | 17 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
|