Disable autocommit on the Postgres RDS level

0

Is there a way to set autocommit off at the RDS level. Need to do that to make all the Java code written for the Oracle database to work with out major modifications. There are triggers that are fired based on the transaction ID generated at the beginning of the transaction. Since autocommit is on (as a default) triggers are not able to find the transaction.

已提問 2 年前檢視次數 1342 次
2 個答案
0
  • Thank you so much for your reply.

    I believe init_connection is only available in mySql. I don't see that parameter in Postgres parameters group.

0

Are you connecting with JDBC? If so, then autocommit is already the default in the JDBC driver and should be set there, like conn.setAutoCommit(false);. AFAIK this cannot be done on the database level.

profile pictureAWS
Uwe K
已回答 2 年前
  • Thank you for your response.

    I was looking for ways to do that at the database level. Looks like that's not possible. Not sure how the triggers will work in this case. I can't test the triggers from the backend now.

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南