From 4bdc7e89510ff7e567213f84b76c23cbff7383c8 Mon Sep 17 00:00:00 2001 From: huolibo Date: Wed, 10 May 2023 13:47:14 +0800 Subject: [PATCH] fix: change some description --- docs/en/14-reference/03-connector/04-java.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/14-reference/03-connector/04-java.mdx b/docs/en/14-reference/03-connector/04-java.mdx index bd799470ee..b878d47a1c 100644 --- a/docs/en/14-reference/03-connector/04-java.mdx +++ b/docs/en/14-reference/03-connector/04-java.mdx @@ -440,7 +440,7 @@ TDengine has significantly improved the bind APIs to support data writing (INSER - JDBC REST connections do not currently support bind interface - The following sample code is based on taos-jdbcdriver-3.2.1 - The setString method should be called for binary type data, and the setNString method should be called for nchar type data -- Do not use `db.?` in prepareStatement, should directly use `?`, then specify the database in setTableName, for example: `prepareStatement.setTableName("db.t1")`. +- Do not use `db.?` in prepareStatement when specify the database with the table name, should directly use `?`, then specify the database in setTableName, for example: `prepareStatement.setTableName("db.t1")`.