Page 1 of 1

Commit

Posted: Sun 04 Jan 2009 01:50
by wjm4
When are commits done in unidac? in particular using oracle?

I noticed that when I do a session->commit() I get an exception thrown. Is there a reason for this?

Also I noticed that the AutoCommit property is not in the properties list.

Thanks for the Clarification.

Posted: Mon 05 Jan 2009 08:36
by Plash
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.