adding test scripts
[csql.git] / test / sqlapi / Csql / Transaction / TODO
blob02be9c50240946e1f8f01fcb213a5a5f96ae0a18
1 1. Default autocommit mode.
2    create table with all datatypes.
3    Insert 5 records .
4    Rollback the transaction.
5    Records should not be rolled back
6    update records
7    Records should not be rolled back
8    delete records 
9    Records should not be rolled back
11 2. Autocommit mode off
12    create table with all datatypes.
13    Insert 5 records .
14    Commit the transaction.
15    Rollback after commit should not have any effect.
16    update records 
17    Rollback the transaction
18    Transaction should be rolled back
19    update records 
20    insert some records
21    delete some records.
22    All the 3 transactions should be rolled back with rollback statement.
23    update records
24    insert some records
25    delete some records.
26    All the 3 transactions should be committed back with commit statement.