Does PostgreSQL support multiple transactions on the same connection? I don't mean nested transactions, but unrelated different transactions.
-
2Multiple concurrent transactions on the same connection? No.Craig Ringer– Craig Ringer2012-07-24 00:24:21 +00:00Commented Jul 24, 2012 at 0:24
-
similar question. Does PostgreSQL support the execution of multiple queries within a single database connection?Yene Mulatu– Yene Mulatu2024-03-07 01:05:14 +00:00Commented Mar 7, 2024 at 1:05
Add a comment
|
2 Answers
If you mean "interleaved transactions" as required by the Java JTA standard: No, there is no support for that. See this JDBC FAQ section for this and why it is not a big loss.
Also the PostgreSQL core does not support something like this.
1 Comment
Yene Mulatu
The link is not working.