Search found 1 match
- 07.07.2023, 04:36
- Forum: ZeosLib 7.2 Forum
- Topic: How to post a record with a transaction that will rollback (PostgresSQL)
- Replies: 2
- Views: 419
How to post a record with a transaction that will rollback (PostgresSQL)
Hello everyone. I Have a transaction and I will execute a rollback, but I need to post a log table record. This insert log record Examle: var con : TZConnection; qry1, qry2, qry3, qryLog : TZQuery; begin try con.TransactIsolationLevel := tiReadCommitted; con.StartTransaction; qry1.Connection := con;...