xtern commented on code in PR #7040: URL: https://github.com/apache/ignite-3/pull/7040#discussion_r2568476985
########## docs/_docs/developers-guide/clients/jdbc-driver.adoc: ########## @@ -16,10 +16,17 @@ Apache Ignite is shipped with JDBC driver that allows processing of distributed data using standard SQL statements like `SELECT`, `INSERT`, `UPDATE`, or `DELETE` directly from the JDBC side. The name of the driver's class is `org.apache.ignite.jdbc.IgniteJdbcDriver`. -This implementation of JDBC driver does not support: +[NOTE] +==== +The JDBC driver was completely reworked in Apache Ignite 3.2 and now supports multiple endpoints and link:developers-guide/clients/overview#partition-awareness[partition awareness]. -* Multiple endpoints -* JDBC connection pools +The new driver is not compatible with Apache Ignite 3.1 and 3.0. To connect to Ignite 3.1 (and 3.0), use the previous version of the driver that was shipped with Apache Ignite 3.1. + +The server part remains compatible with previous versions of the driver, so driver for Ignite 3.1 can successfully connect to the 3.2 cluster. +==== +However, this new driver is not compatible with the previous server versions (3.1 and 3.0). +To connect to Ignite 3.1 (and 3.0), you must use the previous version of the driver that shipped with Apache Ignite 3.1. +The server part remains compatible with previous versions of the driver, so the version 3.1 driver can successfully connect to the version 3.2 server. Review Comment: :facepalm: fixed, thanks -- 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]
