I am trying to write a client which executes a series of DB2 iSeries Stored procedures in DB2. I am using the IBM.Data.DB2.iSeries provider and need all my calls to be within a .NET transaction. Seems like everything is ignored and data being committed.Any pointers...
|
|
|
|
|
|
|
Is the database on the iSeries journaled? That's required for commitment control. |
||||||||
|
|
|
Are you using the DB2Connection.BeginTransaction Method? |
|||
|
|
|
|
I just had this same issue, and figured out that the problem is not in the .Net code, but in the stored procedure. Check your stored proc definition for a COMMIT option. If it is set to "*NONE" it will auto-commit, regardless of transactions in your .Net code. Change it to *RR (repeatable read), and your transactions should work correctly. More information here. |
||
|
|
