I found on your forum this message about AutoCommit and StartTransaction:
When I'm using StartTransaction it doesn't change AutoCommit property. Here is a simple code for Oracle (10.2.0.1.0):UniDAC executes statements in the autocommit mode with Oracle unless you call the StartTransaction method. After you call this method autocommit is disabled. You should call Commit or Rollback to finish the transaction. After this autocommit is enabled.
Code: Select all
oracle->StartTransaction();
oracle->ExecSQL("create table dummy(s varchar2(50))",0,0);
oracle->Commit();
I wonder if you could help me to solve this problem.
Regards, Max.