You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by ty...@apache.org on 2023/03/13 08:36:25 UTC

[incubator-seatunnel] branch dev updated: [Hotfix][Docs] Jdbc doc add port with example. (#4311)

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

tyrantlucifer pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel.git


The following commit(s) were added to refs/heads/dev by this push:
     new 131ebb42b [Hotfix][Docs] Jdbc doc add port with example. (#4311)
131ebb42b is described below

commit 131ebb42b6581ff762368b7808e00f03c21793ce
Author: lightzhao <40...@users.noreply.github.com>
AuthorDate: Mon Mar 13 16:36:18 2023 +0800

    [Hotfix][Docs] Jdbc doc add port with example. (#4311)
    
    Co-authored-by: lightzhao <zh...@gmail.com>
---
 docs/en/connector-v2/sink/Jdbc.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/en/connector-v2/sink/Jdbc.md b/docs/en/connector-v2/sink/Jdbc.md
index eb976cbbc..479c935b9 100644
--- a/docs/en/connector-v2/sink/Jdbc.md
+++ b/docs/en/connector-v2/sink/Jdbc.md
@@ -168,7 +168,7 @@ Simple
 
 ```
 jdbc {
-    url = "jdbc:mysql://localhost/test"
+    url = "jdbc:mysql://localhost:3306/test"
     driver = "com.mysql.cj.jdbc.Driver"
     user = "root"
     password = "123456"
@@ -182,7 +182,7 @@ Exactly-once
 ```
 jdbc {
 
-    url = "jdbc:mysql://localhost/test"
+    url = "jdbc:mysql://localhost:3306/test"
     driver = "com.mysql.cj.jdbc.Driver"
 
     max_retries = 0
@@ -201,7 +201,7 @@ CDC(Change data capture) event
 ```
 sink {
     jdbc {
-        url = "jdbc:mysql://localhost/test"
+        url = "jdbc:mysql://localhost:3306/test"
         driver = "com.mysql.cj.jdbc.Driver"
         user = "root"
         password = "123456"