How to perform transactions in case of postgres? #58
Answered
by
matt-42
shivshankardayal
asked this question in
Q&A
-
How to perform transactions in case of postgresql? It would be nice to add an example in repo and docs. |
Beta Was this translation helpful? Give feedback.
Answered by
matt-42
Mar 1, 2021
Replies: 1 comment
-
Hi @shivshankardayal , Here is one example of transactions: connection("START TRANSACTION;");
// [... your requests... ]
connection("COMMIT;"); Thanks for the feedback, I'll add an example in the doc. Don't hesitate if you have other questions |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
matt-42
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @shivshankardayal ,
Here is one example of transactions:
Thanks for the feedback, I'll add an example in the doc.
Don't hesitate if you have other questions