Lines Matching refs:cmd
38 # cmd An INSERT or REPLACE command to execute against table t1
39 # t0 True if there is an error from $cmd
40 # t1 Content of "c" column of t1 assuming no error in $cmd
44 foreach {i cmd t0 t1 t2 t3} {
61 $cmd INTO t1 VALUES(1,2,4);
86 # cmd An INSERT or REPLACE command to execute against table t1
87 # t0 True if there is an error from $cmd
88 # t1 Content of "c" column of t1 assuming no error in $cmd
91 foreach {i cmd t0 t1 t2} {
107 $cmd INTO t1 VALUES(1,2,4);
131 # cmd An INSERT or REPLACE command to execute against table t1
132 # t0 True if there is an error from $cmd
133 # t1 Content of "c" column of t1 assuming no error in $cmd
136 foreach {i cmd t0 t1 t2} {
152 $cmd INTO t1 VALUES(1,2,4);
173 # cmd An INSERT or REPLACE command to execute against table t1
174 # t0 True if there is an error from $cmd
175 # t1 Content of "c" column of t1 assuming no error in $cmd
178 foreach {i conf1 cmd t0 t1 t2} {
200 $cmd INTO t1 VALUES(1,2,4);
221 # cmd An INSERT or REPLACE command to execute against table t1
222 # t0 True if there is an error from $cmd
223 # t1 Content of "c" column of t1 assuming no error in $cmd
226 foreach {i conf1 cmd t0 t1 t2} {
253 $cmd INTO t1 VALUES(1,2,NULL);
280 # cmd An UPDATE command to execute against table t1
281 # t0 True if there is an error from $cmd
282 # t1 Content of "b" column of t1 assuming no error in $cmd
293 foreach {i conf1 cmd t0 t1 t2 t3 t4} {
334 $cmd t3 SET x=1;
335 $cmd t1 SET b=b*2;
336 $cmd t1 SET a=c+5;