sqlite_vdbe 0.0.3

Low-level access to SQLite's VDBE bytecode engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
---
source: tests/display_test.rs
assertion_line: 35
expression: program.to_string()
---
addr  opcode         p1    p2    p3    p4             p5  comment
----  -------------  ----  ----  ----  -------------  --  -------------
0     Init           0     4     0                    0   Start at 4
1     Add            2     2     1                    0   r[1]=r[2]+r[2]
2     ResultRow      1     1     0                    0   output=r[1]
3     Halt           0     0     0                    0   
4     Integer        1     2     0                    0   r[2]=1
5     Goto           0     1     0                    0   select 1 + 1;