adding test scripts
[csql.git] / test / tools / csql / autocommit2.sql
blob63d57d58a0e0d835c26f4f2c89f19d6066c5f3bb
1 echo set autocommit off;
2 set autocommit off;
3 echo update t1 set f2='k' where f1=2;
4 update t1 set f2='k' where f1=2;
5 echo select * from t1;
6 select * from t1;
7 echo rollback;
8 rollback;
9 echo select * from t1;
10 select * from t1;
11 echo insert into t1 values(3,'k');
12 insert into t1 values(3,'k');
13 echo insert into t1 values(4,'p');
14 insert into t1 values(4,'p');
15 echo commit;
16 commit;
17 echo insert into t1 values(5,'t');
18 insert into t1 values(5,'t');
19 echo rollback;
20 rollback;