-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Connection in read-only mode #14
Comments
What is connection read-only mode in Postgres? Do you mean read-only transactions(https://www.postgresql.org/docs/current/sql-set-transaction.html)? |
Yes, this is what I mean |
Have you tried scheduling a query to control it directly? |
What I am currently doing is adding "SET TRANSACTION READ ONLY" for each Sql query. Thank's |
There's no specific API for this, I wonder does it make any difference between calling such an API and a query :-) |
I mean , open transations in read only mode using reactive-pg-client ;-) |
I agreed we could add such APIs for the transactions characteristics, you can check the eclipse-vertx/vertx-sql-client#432 |
It would be interesting ( at least for me :-) ) Thank you |
Hi,
Is there a way to put the connection in read-only mode ?
Thank's
The text was updated successfully, but these errors were encountered: