L lev_ko Member² Oct 12, 2000 #1 BDE's TDatabase has a method StartTransaction, which allows to start a transaction explicitly. How can I do this with TOracleSession ? And also, how do transactions start implicitly ?
BDE's TDatabase has a method StartTransaction, which allows to start a transaction explicitly. How can I do this with TOracleSession ? And also, how do transactions start implicitly ?
D Dean Member² Oct 12, 2000 #1 To start your own transaction just use TOracleSession.SavePoint('MySavePoint'). As for implicit transactions, you can use the TOracleDataSet.CommitOnPost := True which will automagically do a commit after every post.
To start your own transaction just use TOracleSession.SavePoint('MySavePoint'). As for implicit transactions, you can use the TOracleDataSet.CommitOnPost := True which will automagically do a commit after every post.