Home | History | Annotate | Download | only in SQLite

Lines Matching refs:SQLite

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;