HomeSort by relevance Sort by last modified time
    Searched defs:SQLite (Results 1 - 25 of 29) sorted by null

1 2

  /external/javasqlite/src/main/java/SQLite/
Exception.java 1 package SQLite;
4 * Class for SQLite related exceptions.
10 * Construct a new SQLite exception.
Authorizer.java 1 package SQLite;
4 * Callback interface for SQLite's authorizer function.
BusyHandler.java 1 package SQLite;
4 * Callback interface for SQLite's user defined busy handler.
Profile.java 1 package SQLite;
4 * Callback interface for SQLite's profile function.
ProgressHandler.java 1 package SQLite;
4 * Callback interface for SQLite's user defined progress handler.
10 * Invoked for N SQLite VM opcodes.
Trace.java 1 package SQLite;
4 * Callback interface for SQLite's trace 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>
Function.java 1 package SQLite;
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();
FunctionContext.java 1 package SQLite;
4 * Context for execution of SQLite's user defined functions.
12 * Internal handle for the native SQLite API.
Vm.java 1 package SQLite;
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.Exception
    [all...]
Backup.java 1 package SQLite;
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.Exception
    [all...]
StringEncoder.java 1 package SQLite;
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
TableResult.java 1 package SQLite;
6 * Class representing an SQLite result set as
15 * SQLite.Database db = new SQLite.Database();
Blob.java 1 package SQLite;
7 * SQLite 3.4.0 incremental blob I/O interface.
153 * SQLite 3.4.0 incremental blob I/O interface.
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...]
Database.java 1 package SQLite;
4 * Main class wrapping an SQLite database.
10 * Internal handle for the native SQLite API.
22 * Open an SQLite database file.
28 public void open(String filename, int mode) throws SQLite.Exception {
30 mode = SQLite.Constants.SQLITE_OPEN_READWRITE |
31 SQLite.Constants.SQLITE_OPEN_CREATE;
33 mode = SQLite.Constants.SQLITE_OPEN_READONLY;
38 } catch (SQLite.Exception se) {
49 * Open an SQLite database file
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
TableResultX.java 1 package SQLite.JDBC2z;
6 public class TableResultX extends SQLite.TableResult {
25 public TableResultX(SQLite.TableResult tr) {
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...]
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...]
JDBCResultSetMetaData.java 1 package SQLite.JDBC2z;
JDBCStatement.java 1 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) {
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...]
  /external/chromium_org/chrome/tools/
history-viz.py 132 class SQLite(object):
133 """Trivial interface to executing SQLite queries.
140 subproc = subprocess.Popen(['sqlite', self.file],
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/
SQLite.java 4 import android.database.sqlite.SQLiteException;
16 public class SQLite {

Completed in 165 milliseconds

1 2