1 echo set autocommit off
;
2 AUTOCOMMIT Mode is
set to OFF
3 echo create table t1
(f1 int not null
,f2 int
,f3 int
);
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 insert into t1 values
(1000,2000,3000);
12 Statement Executed
: Rows Affected
= 1
14 echo select * from t1
;
15 ---------------------------------------------------------
17 ---------------------------------------------------------
24 Statement Executed
: Rows Affected
= 4
26 echo select * from t1
;
27 ---------------------------------------------------------
29 ---------------------------------------------------------