windows changes
[csql.git] / test / tools / csql / exp.test069.ksh
blob5a479b29bdc14f51f6e64ac76c5d6b3ddd4f5c3d
1 echo set autocommit on;
2 AUTOCOMMIT Mode is set to ON
3 echo create table t1(f1 int not null,f2 int,f3 int);
4 Statement Executed
5 echo insert into t1 values(1,2,3);
6 Statement Executed: Rows Affected = 1
7 echo insert into t1 values(10,20,30);
8 Statement Executed: Rows Affected = 1
9 echo insert into t1 values(100,200,300);
10 Statement Executed: Rows Affected = 1
11 echo select * from t1;
12 ---------------------------------------------------------
13 t1.f1 t1.f2 t1.f3
14 ---------------------------------------------------------
15 1 2 3
16 10 20 30
17 100 200 300
19 echo commit;
20 echo select * from t1;
21 ---------------------------------------------------------
22 t1.f1 t1.f2 t1.f3
23 ---------------------------------------------------------
24 1 2 3
25 10 20 30
26 100 200 300
28 Statement Executed