Home | History | Annotate | Download | only in SQLite

Lines Matching refs:vm

307 		Vm vm = compile(sql);
308 set_last_error(vm.error_code);
310 while (ret.nrows < ret.maxrows && vm.step(ret)) {
311 set_last_error(vm.error_code);
314 while (vm.step(ret)) {
315 set_last_error(vm.error_code);
318 vm.finalize();
360 Vm vm = compile(sql, args);
361 set_last_error(vm.error_code);
363 while (ret.nrows < ret.maxrows && vm.step(ret)) {
364 set_last_error(vm.error_code);
367 while (vm.step(ret)) {
368 set_last_error(vm.error_code);
371 vm.finalize();
414 Vm vm = compile(sql, args);
416 while (tbl.nrows < tbl.maxrows && vm.step(tbl)) {
417 set_last_error(vm.error_code);
420 while (vm.step(tbl)) {
421 set_last_error(vm.error_code);
424 vm.finalize();
673 * Compile and return SQLite VM for SQL statement. Only available
677 Vm object
680 public Vm compile(String sql) throws SQLite.Exception {
682 Vm vm = new Vm();
683 vm_compile(sql, vm);
684 return vm;
689 * Compile and return SQLite VM for SQL statement. Only available
694 * @return a Vm object
697 public Vm compile(String sql, String args[]) throws SQLite.Exception {
699 Vm vm = new Vm();
700 vm_compile_args(sql, vm, args);
701 return vm;
750 * @param vm Vm object
753 private native void vm_compile(String sql, Vm vm)
760 * @param vm Vm object
763 private native void vm_compile_args(String sql, Vm vm, String args[])
791 * N SQLite VM opcodes.
793 * @param n number of SQLite VM opcodes until callback is invoked