/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
|
/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/licenseclassifier/v2/assets/License/SQLite/ |
D | license.txt | 1 The source code for SQLite is in the public domain. No claim of 5 All contributors to the SQLite core software have signed affidavits 7 that anybody is able to legally do anything they want with the SQLite 12 still governed by copyright law. SQLite is different in that copyright 17 file. The SQLite source code contains no license since it is not 18 governed by copyright. Instead of a license, the SQLite source code
|
/external/rust/android-crates-io/crates/rusqlite/ |
D | README.md | 11 Rusqlite is an ergonomic wrapper for using SQLite from Rust. 22 # version of SQLite for you. This avoids many common build issues, and 23 # avoids depending on the version of SQLite on the users system (or your 25 # programs that control their own SQLite databases. 82 ### Supported SQLite Versions 84 The base `rusqlite` package supports SQLite version 3.14.0 or newer. If you need 86 newer SQLite version; see details below. 94 allows loading dynamic library-based SQLite extensions. 97 allows use of SQLite's online backup API. 99 allows you to load Rust closures into SQLite connections for use in queries. [all …]
|
/external/rust/android-crates-io/crates/libsqlite3-sys/ |
D | README.md | 11 Rusqlite is an ergonomic wrapper for using SQLite from Rust. 22 # version of SQLite for you. This avoids many common build issues, and 23 # avoids depending on the version of SQLite on the users system (or your 25 # programs that control their own SQLite databases. 82 ### Supported SQLite Versions 84 The base `rusqlite` package supports SQLite version 3.14.0 or newer. If you need 86 newer SQLite version; see details below. 94 allows loading dynamic library-based SQLite extensions. 97 allows use of SQLite's online backup API. 99 allows you to load Rust closures into SQLite connections for use in queries. [all …]
|
/external/sqlite/dist/sqlite-autoconf-3440300/ |
D | METADATA | 1 name: "SQLite" 3 "SQLite database" 12 value: "https://sqlite.org/src/tarball/d68fb8b5/SQLite-d68fb8b5.tar.gz"
|
/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. 25 SQLite is a C library that provides a lightweight disk-based database that 28 SQLite for internal data storage. It's also possible to prototype an 29 application using SQLite and then port the code to a larger database such as 34 requires SQLite 3.15.2 or newer. 48 The SQLite web page; the documentation describes the syntax and the 101 thanks to the `flexible typing`_ feature of SQLite, 111 but SQLite versions older than 3.33.0 do not recognise that variant. 114 the ``sqlite_master`` table built-in to SQLite, [all …]
|
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/util/ |
D | SQLiteLibraryLoader.java | 3 import com.almworks.sqlite4java.SQLite; 94 SQLite.setLibraryPath(libPath.getAbsolutePath()); in loadFromDirectory() 98 + SQLite.getLibraryVersion() in loadFromDirectory() 100 + 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/sqlite/ |
D | METADATA.TEMPLATE | 1 name: "SQLite" 3 "SQLite database"
|
D | METADATA | 1 name: "SQLite" 3 "SQLite database"
|
D | README-upgrade.md | 1 ## Upgrading SQLite 57 software. SQLite is unusual because it has no license: it is in the public 71 There is a CTS test that verifies the SQLite version. This must be updated as 93 This is a documentation file that, among other things, maps SQLite versions to 94 Android API levels. It should be updated every time SQLite is upgraded and on 99 The current plan for modifying this file when SQLite is upgraded is to add a new
|
/external/sqlite/dist/sqlite-autoconf-3440400/ |
D | METADATA | 1 name: "SQLite" 3 "SQLite database"
|
/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
|
/external/perfetto/tools/ |
D | format_sql.py | 31 from sqlglot.dialects.sqlite import SQLite 35 class Perfetto(SQLite): 38 class Generator(SQLite.Generator): 46 **SQLite.Generator.TYPE_MAPPING, 54 **SQLite.Generator.TRANSFORMS, 64 **SQLite.Generator.PROPERTIES_LOCATION, 217 class Parser(SQLite.Parser): 219 **SQLite.Parser.STATEMENT_PARSERS,
|
/external/federated-compute/fcp/protos/ |
D | selection_criteria.proto | 28 // TODO(b/178190670) Currently only SQLite is supported, as Android clients 29 // can only execute via SQLite.
|