You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sk...@apache.org on 2022/02/03 17:48:34 UTC

[ignite-3] branch ignite-3.0.0-alpha4 updated: IGNITE-16457 Fixed JDBC driver name in docs. Fixes #623

This is an automated email from the ASF dual-hosted git repository.

sk0x50 pushed a commit to branch ignite-3.0.0-alpha4
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/ignite-3.0.0-alpha4 by this push:
     new 56325b5  IGNITE-16457 Fixed JDBC driver name in docs. Fixes #623
56325b5 is described below

commit 56325b5a9b13d24586e1ffaa485a54c1608a8df7
Author: IgGusev <de...@mail.ru>
AuthorDate: Thu Feb 3 20:47:20 2022 +0300

    IGNITE-16457 Fixed JDBC driver name in docs. Fixes #623
    
    Signed-off-by: Slava Koptilin <sl...@gmail.com>
    (cherry picked from commit fa1d644554815244f638025e48439fbedf446e6f)
---
 docs/_docs/sql/jdbc-driver.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/_docs/sql/jdbc-driver.adoc b/docs/_docs/sql/jdbc-driver.adoc
index 5fc1e7d..4666c6c 100644
--- a/docs/_docs/sql/jdbc-driver.adoc
+++ b/docs/_docs/sql/jdbc-driver.adoc
@@ -28,7 +28,7 @@ This Alpha release implementation of JDBC driver does not support the following
 
 == Setting Up
 
-The name of the driver’s class is `org.apache.ignite.IgniteJdbcThinDriver`. For instance, this is how you can open a JDBC connection to the cluster node listening on IP address `192.168.0.50`:
+The name of the driver’s class is `org.apache.ignite.jdbc.IgniteJdbcDriver`. For instance, this is how you can open a JDBC connection to the cluster node listening on IP address `192.168.0.50`:
 
 [source, java]
 ----