From e81e3bbc705a6b60d92b5bbf1f03dd9b52be50af Mon Sep 17 00:00:00 2001 From: Jeremy Date: Wed, 6 Aug 2025 23:33:13 +0800 Subject: [PATCH] fix: update 03-jdbc.md Add databend-jdbc connection docs. --- docs/en/developer/00-drivers/03-jdbc.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/docs/en/developer/00-drivers/03-jdbc.md b/docs/en/developer/00-drivers/03-jdbc.md index 0cd14e669f..58e55f9094 100644 --- a/docs/en/developer/00-drivers/03-jdbc.md +++ b/docs/en/developer/00-drivers/03-jdbc.md @@ -99,10 +99,20 @@ pstmt.close(); conn.close(); ``` +## Configuration Reference + +For complete databend-jdbc driver configuration options including: +- Connection string parameters +- SSL/TLS configuration +- Authentication methods +- Performance tuning parameters + +Please refer to the [official databend-jdbc Connection Guide](https://github.com/databendlabs/databend-jdbc/blob/main/docs/Connection.md). + ## Resources - **Maven Central**: [databend-jdbc](https://repo1.maven.org/maven2/com/databend/databend-jdbc/) -- **GitHub Repository**: [databend-jdbc](https://github.com/databendcloud/databend-jdbc) +- **GitHub Repository**: [databend-jdbc](https://github.com/databendlabs/databend-jdbc) - **JDBC Documentation**: [Oracle JDBC Guide](https://docs.oracle.com/javase/tutorial/jdbc/)