xtern commented on code in PR #7040: URL: https://github.com/apache/ignite-3/pull/7040#discussion_r2565418685
########## docs/_docs/developers-guide/clients/jdbc-driver.adoc: ########## @@ -89,7 +88,9 @@ If the same parameters are passed by using different means, the JDBC driver prio == Performing Transactions -With the JDBC driver, you can perform `commit` and `rollback` transactions. For more information about transactions, see link:developers-guide/transactions[Performing Transactions]. +By default a JDBC connection is in auto-commit mode, and in this mode all its SQL statements will be executed and committed as individual transactions. +To be able to manage the transaction, you must switch connection to non-autocommit mode (see link:https://docs.oracle.com/en/java/javase/11/docs/api/java.sql/java/sql/Connection.html#setAutoCommit(boolean)[java documentation]). Review Comment: > Can we add an example here The example was previously updated > instead of sending user somewhere else External link removed -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
