Mar 14, 2004 #1 siraj777 Programmer Aug 22, 2002 27 IN Using PowerBuilder 8 with Oracle 9. dw_1.DeleteRow(li_row) dw_1.Update() COMMIT; Is the ROLLBACK automatic when COMMIT FAILS? or do we need the following statement? If sqlca.sqlcode = -1 Then ROLLBACK
Using PowerBuilder 8 with Oracle 9. dw_1.DeleteRow(li_row) dw_1.Update() COMMIT; Is the ROLLBACK automatic when COMMIT FAILS? or do we need the following statement? If sqlca.sqlcode = -1 Then ROLLBACK
Mar 15, 2004 #2 pgaec Programmer Aug 4, 2003 161 AU it is set at transaction object level Ex: SQLCA.AutoCommit = True Upvote 0 Downvote