Home | History | Annotate | Download | only in SQLite

Lines Matching refs:Vm

4  * Class to represent compiled SQLite VM.
7 public class Vm {
10 * Internal handle for the compiled SQLite VM.
22 * Perform one step on compiled SQLite VM.
29 * Vm vm = db.compile("select * from x; select * from y;");
30 * while (vm.step(cb)) {
33 * while (vm.compile()) {
34 * while (vm.step(cb)) {
50 * Compile the next SQL statement for the SQLite VM instance.
58 * Abort the compiled SQLite VM.