1 //Close the Connection and call commit, it should fail
7 AbsSqlConnection
*con
= createConnection();
8 rv
= con
->connect("root","manager");
10 printf("Connection opened\n");
12 rv
= con
->beginTrans();
15 rv
= con
->disconnect();
16 if(rv
!=OK
)return 3;printf("Connection closed\n");
21 printf("Test script failed\n");
24 printf("After closing the connection, commit failed\n");
25 printf("Test script pased\n");