Searched defs:SQLite (Results 1 - 25 of 29) sorted by relevance

12

/external/javasqlite/src/main/java/SQLite/
H A DException.java1 package SQLite; package
4 * Class for SQLite related exceptions.
10 * Construct a new SQLite exception.
H A DProgressHandler.java1 package SQLite; package
4 * Callback interface for SQLite's user defined progress handler.
10 * Invoked for N SQLite VM opcodes.
H A DTrace.java1 package SQLite; package
4 * Callback interface for SQLite's trace function.
H A DBusyHandler.java1 package SQLite; package
4 * Callback interface for SQLite's user defined busy handler.
H A DProfile.java1 package SQLite; package
4 * Callback interface for SQLite's profile function.
H A DCallback.java1 package SQLite; package
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>
H A DFunction.java1 package SQLite; package
4 * Callback interface for SQLite's user defined functions.
12 * class SinFunc implements SQLite.Function {
13 * public void function(SQLite.FunctionContext fc, String args[]) {
23 * SQLite.Database db = new SQLite.Database();
H A DAuthorizer.java1 package SQLite; package
4 * Callback interface for SQLite's authorizer function.
H A DFunctionContext.java1 package SQLite; package
4 * Context for execution of SQLite's user defined functions.
12 * Internal handle for the native SQLite API.
H A DVm.java1 package SQLite; package
4 * Class to represent compiled SQLite VM.
10 * Internal handle for the compiled SQLite VM.
22 * Perform one step on compiled SQLite VM.
38 * } catch (SQLite.Exception e) {
47 public native boolean step(Callback cb) throws SQLite.Exception;
50 * Compile the next SQL statement for the SQLite VM instance.
55 public native boolean compile() throws SQLite.Exception;
58 * Abort the compiled SQLite VM.
61 public native void stop() throws SQLite
[all...]
H A DBackup.java1 package SQLite; package
4 * Class wrapping an SQLite backup object.
10 * Internal handle for the native SQLite API.
19 protected void finish() throws SQLite.Exception {
33 } catch (SQLite.Exception e) {
38 protected native void _finalize() throws SQLite.Exception;
47 public boolean step(int n) throws SQLite.Exception {
53 private native boolean _step(int n) throws SQLite.Exception;
59 public void backup() throws SQLite.Exception {
69 public int remaining() throws SQLite
[all...]
H A DJDBCDriver.java1 package SQLite; package
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
[all...]
H A DStringEncoder.java1 package SQLite; package
4 * String encoder/decoder for SQLite.
9 * author in the source code of the SQLite distribution.
25 * the SQLite database. The database cannot handle null (0x00) and
H A DTableResult.java1 package SQLite; package
6 * Class representing an SQLite result set as
15 * SQLite.Database db = new SQLite.Database();
H A DBlob.java1 package SQLite; package
7 * SQLite 3.4.0 incremental blob I/O interface.
153 * SQLite 3.4.0 incremental blob I/O interface.
H A DStmt.java1 package SQLite; package
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
[all...]
H A DShell.java1 package SQLite; package
3 import SQLite.*;
8 * SQLite command line shell. This is a partial reimplementaion
12 * java SQLite.Shell [OPTIONS] database [SHELLCMD]
171 /* Empty body to satisfy SQLite.Callback interface. */
642 /* Empty body to satisfy SQLite.Callback interface. */
646 /* Empty body to satisfy SQLite.Callback interface. */
/external/javasqlite/src/main/java/SQLite/JDBC2z/
H A 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
[all...]
H A DTableResultX.java1 package SQLite.JDBC2z;
6 public class TableResultX extends SQLite.TableResult {
25 public TableResultX(SQLite.TableResult tr) {
H A 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
[all...]
H A DJDBCResultSetMetaData.java1 package SQLite.JDBC2z;
H A DJDBCStatement.java1 package SQLite.JDBC2z;
87 SQLite.TableResult tr = null;
118 } catch (SQLite.Exception e) {
120 conn.db.last_error() == SQLite.Constants.SQLITE_BUSY &&
127 } catch (SQLite.Exception ee) {
H A DJDBCConnection.java1 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
[all...]
/external/chromium_org/chrome/tools/
H A Dhistory-viz.py132 class SQLite(object): class in inherits:object
133 """Trivial interface to executing SQLite queries.
152 db = SQLite(filename)
169 # SQLite outputs transition values as signed integers, but they're really
/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
H A DSQLite.java16 public class SQLite { class

Completed in 241 milliseconds

12