From 653792223eef0b21db8dc47e6ac5b255aca5420c Mon Sep 17 00:00:00 2001 From: josh-wong Date: Tue, 28 Jan 2025 03:18:16 +0000 Subject: [PATCH] AUTO: Sync ScalarDB docs in English to docs site repo --- .../scalardb-benchmarks/README.mdx | 26 ++++++++++++++-- ...ide-for-scalardb-cluster-with-java-api.mdx | 30 +++++++++---------- ...-started-with-scalardb-cluster-graphql.mdx | 4 +-- ...started-with-scalardb-cluster-sql-jdbc.mdx | 4 +-- ...-scalardb-cluster-sql-spring-data-jdbc.mdx | 4 +-- .../getting-started-with-scalardb-cluster.mdx | 6 ++-- ...ted-with-using-go-for-scalardb-cluster.mdx | 4 +-- ...with-using-python-for-scalardb-cluster.mdx | 4 +-- ...ster-on-kubernetes-by-using-helm-chart.mdx | 2 +- .../version-3.10/scalardb-sql/index.mdx | 8 ++--- .../scalardb-sql/sql-api-guide.mdx | 10 +++---- 11 files changed, 62 insertions(+), 40 deletions(-) diff --git a/versioned_docs/version-3.10/scalardb-benchmarks/README.mdx b/versioned_docs/version-3.10/scalardb-benchmarks/README.mdx index 9b525cb2..b3a7adcf 100644 --- a/versioned_docs/version-3.10/scalardb-benchmarks/README.mdx +++ b/versioned_docs/version-3.10/scalardb-benchmarks/README.mdx @@ -1,6 +1,8 @@ --- tags: - Community + - Enterprise Standard + - Enterprise Premium --- # ScalarDB Benchmarking Tools @@ -64,9 +66,11 @@ To build the benchmarking tools, run the following command: ### Load the schema -Before loading the initial data, the tables must be defined by using the [ScalarDB Schema Loader](../schema-loader.mdx). To apply the schema, go to the [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases) page and download the ScalarDB Schema Loader that matches the version of ScalarDB that you are using to the `scalardb-benchmarks` root folder. +Before loading the initial data, the tables must be defined by using the [ScalarDB Schema Loader](../schema-loader.mdx). You can download the ScalarDB Schema Loader on the [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases) page. Select the Schema Loader based on how you access ScalarDB: +- **Using the ScalarDB Core library (Community edition)?:** Choose `scalardb-schema-loader-.jar` for the version of ScalarDB that you're using. Then, save the `.jar` file in the `scalardb-benchmarks` root directory. +- **Using ScalarDB Cluster (Enterprise edition)?:** Choose `scalardb-cluster-schema-loader--all.jar` for the version of ScalarDB Cluster that you're using. Then, save the `.jar` file in the `scalardb-benchmarks` root directory. -In addition, you need a properties file that contains database configurations for ScalarDB. For details about configuring the ScalarDB properties file, see [ScalarDB Configurations](../configurations.mdx). +In addition, you need a properties file for accessing ScalarDB via the Java CRUD interface. For details about configuring the ScalarDB properties file, see [ScalarDB Configurations](../configurations.mdx) or [ScalarDB Cluster Client Configurations](../scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx#client-configurations). After applying the schema and configuring the properties file, select a benchmark and follow the instructions to create the tables. @@ -77,6 +81,12 @@ After applying the schema and configuring the properties file, select a benchmar ```console java -jar scalardb-schema-loader-.jar --config -f tpcc-schema.json --coordinator ``` + + If you are using ScalarDB Cluster, run the following command instead: + + ```console + java -jar scalardb-cluster-schema-loader--all.jar --config -f tpcc-schema.json --coordinator + ``` To create tables for YCSB benchmarking ([`ycsb-schema.json`](https://github.com/scalar-labs/scalardb-benchmarks/blob/master/ycsb-schema.json)), run the following command, replacing the contents in the angle brackets as described: @@ -84,6 +94,12 @@ After applying the schema and configuring the properties file, select a benchmar ```console java -jar scalardb-schema-loader-.jar --config -f ycsb-schema.json --coordinator ``` + + If you are using ScalarDB Cluster, run the following command instead: + + ```console + java -jar scalardb-cluster-schema-loader--all.jar --config -f ycsb-schema.json --coordinator + ``` To create tables for multi-storage YCSB benchmarking ([`ycsb-multi-storage-schema.json`](https://github.com/scalar-labs/scalardb-benchmarks/blob/master/ycsb-multi-storage-schema.json)), run the following command, replacing the contents in the angle brackets as described: @@ -91,6 +107,12 @@ After applying the schema and configuring the properties file, select a benchmar ```console java -jar scalardb-schema-loader-.jar --config -f ycsb-multi-storage-schema.json --coordinator ``` + + If you are using ScalarDB Cluster, run the following command instead: + + ```console + java -jar scalardb-cluster-schema-loader--all.jar --config -f ycsb-multi-storage-schema.json --coordinator + ``` diff --git a/versioned_docs/version-3.10/scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx b/versioned_docs/version-3.10/scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx index 1b91ebfd..8dad3d10 100644 --- a/versioned_docs/version-3.10/scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx +++ b/versioned_docs/version-3.10/scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx @@ -117,7 +117,7 @@ To add a dependency on ScalarDB Cluster Client by using Gradle, use the followin ```gradle dependencies { - implementation 'com.scalar-labs:scalardb-cluster-client:3.10.6' + implementation 'com.scalar-labs:scalardb-cluster-client:3.10.7' } ``` @@ -127,7 +127,7 @@ To add a dependency by using Maven, use the following: com.scalar-labs scalardb-cluster-client - 3.10.6 + 3.10.7 ``` @@ -222,11 +222,11 @@ scalar.db.contact_points=direct-kubernetes:ns/scalardb-cluster To load a schema via ScalarDB Cluster, you need to use the dedicated Schema Loader for ScalarDB Cluster (Schema Loader for Cluster). Using the Schema Loader for Cluster is basically the same as using the [ScalarDB Schema Loader](../schema-loader.mdx) except the name of the JAR file is different. -You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.6). +You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.7). After downloading the JAR file, you can run Schema Loader for Cluster with the following command: ```console -java -jar scalardb-cluster-schema-loader-3.10.6-all.jar --config -f --coordinator +java -jar scalardb-cluster-schema-loader-3.10.7-all.jar --config -f --coordinator ``` ## ScalarDB Cluster SQL @@ -266,8 +266,8 @@ To add the dependencies on the ScalarDB Cluster JDBC driver by using Gradle, use ```gradle dependencies { - implementation 'com.scalar-labs:scalardb-sql-jdbc:3.10.6' - implementation 'com.scalar-labs:scalardb-cluster-client:3.10.6' + implementation 'com.scalar-labs:scalardb-sql-jdbc:3.10.7' + implementation 'com.scalar-labs:scalardb-cluster-client:3.10.7' } ``` @@ -278,12 +278,12 @@ To add the dependencies by using Maven, use the following: com.scalar-labs scalardb-sql-jdbc - 3.10.6 + 3.10.7 com.scalar-labs scalardb-cluster-client - 3.10.6 + 3.10.7 ``` @@ -301,8 +301,8 @@ To add the dependencies by using Gradle, use the following: ```gradle dependencies { - implementation 'com.scalar-labs:scalardb-sql-spring-data:3.10.6' - implementation 'com.scalar-labs:scalardb-cluster-client:3.10.6' + implementation 'com.scalar-labs:scalardb-sql-spring-data:3.10.7' + implementation 'com.scalar-labs:scalardb-cluster-client:3.10.7' } ``` @@ -313,12 +313,12 @@ To add the dependencies by using Maven, use the following: com.scalar-labs scalardb-sql-spring-data - 3.10.6 + 3.10.7 com.scalar-labs scalardb-cluster-client - 3.10.6 + 3.10.7 ``` @@ -363,10 +363,10 @@ For details about how to configure Spring Data JDBC for ScalarDB, see [Configura Like other SQL databases, ScalarDB SQL also provides a CLI tool where you can issue SQL statements interactively in a command-line shell. -You can download the SQL CLI for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.6). After downloading the JAR file, you can run the SQL CLI with the following command: +You can download the SQL CLI for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.7). After downloading the JAR file, you can run the SQL CLI with the following command: ```console -java -jar scalardb-cluster-sql-cli-3.10.6-all.jar --config +java -jar scalardb-cluster-sql-cli-3.10.7-all.jar --config ``` #### Usage @@ -374,7 +374,7 @@ java -jar scalardb-cluster-sql-cli-3.10.6-all.jar --config You can see the CLI usage with the `-h` option as follows: ```console -java -jar scalardb-cluster-sql-cli-3.10.6-all.jar -h +java -jar scalardb-cluster-sql-cli-3.10.7-all.jar -h Usage: scalardb-sql-cli [-hs] -c=PROPERTIES_FILE [-e=COMMAND] [-f=FILE] [-l=LOG_FILE] [-o=] Starts ScalarDB SQL CLI. diff --git a/versioned_docs/version-3.10/scalardb-cluster/getting-started-with-scalardb-cluster-graphql.mdx b/versioned_docs/version-3.10/scalardb-cluster/getting-started-with-scalardb-cluster-graphql.mdx index 845684b3..f7266b2a 100644 --- a/versioned_docs/version-3.10/scalardb-cluster/getting-started-with-scalardb-cluster-graphql.mdx +++ b/versioned_docs/version-3.10/scalardb-cluster/getting-started-with-scalardb-cluster-graphql.mdx @@ -105,11 +105,11 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi To load a schema via ScalarDB Cluster, you need to use the dedicated Schema Loader for ScalarDB Cluster (Schema Loader for Cluster). Using the Schema Loader for Cluster is basically the same as using the [Schema Loader for ScalarDB](../schema-loader.mdx) except the name of the JAR file is different. -You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.6). +You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.7). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command: ```console -java -jar scalardb-cluster-schema-loader-3.10.6-all.jar --config database.properties -f schema.json --coordinator +java -jar scalardb-cluster-schema-loader-3.10.7-all.jar --config database.properties -f schema.json --coordinator ``` ## Step 4. Run operations from GraphiQL diff --git a/versioned_docs/version-3.10/scalardb-cluster/getting-started-with-scalardb-cluster-sql-jdbc.mdx b/versioned_docs/version-3.10/scalardb-cluster/getting-started-with-scalardb-cluster-sql-jdbc.mdx index 87afdabb..b6b86fb5 100644 --- a/versioned_docs/version-3.10/scalardb-cluster/getting-started-with-scalardb-cluster-sql-jdbc.mdx +++ b/versioned_docs/version-3.10/scalardb-cluster/getting-started-with-scalardb-cluster-sql-jdbc.mdx @@ -107,10 +107,10 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi ## Step 3. Load a schema -To load a schema, you need to use [the SQL CLI](developer-guide-for-scalardb-cluster-with-java-api.mdx#sql-cli). You can download the SQL CLI from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.6). After downloading the JAR file, you can use SQL CLI for Cluster by running the following command: +To load a schema, you need to use [the SQL CLI](developer-guide-for-scalardb-cluster-with-java-api.mdx#sql-cli). You can download the SQL CLI from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.7). After downloading the JAR file, you can use SQL CLI for Cluster by running the following command: ```console -java -jar scalardb-cluster-sql-cli-3.10.6-all.jar --config scalardb-sql.properties --file schema.sql +java -jar scalardb-cluster-sql-cli-3.10.7-all.jar --config scalardb-sql.properties --file schema.sql ``` ## Step 4. Load the initial data diff --git a/versioned_docs/version-3.10/scalardb-cluster/getting-started-with-scalardb-cluster-sql-spring-data-jdbc.mdx b/versioned_docs/version-3.10/scalardb-cluster/getting-started-with-scalardb-cluster-sql-spring-data-jdbc.mdx index c2789b01..9981c646 100644 --- a/versioned_docs/version-3.10/scalardb-cluster/getting-started-with-scalardb-cluster-sql-spring-data-jdbc.mdx +++ b/versioned_docs/version-3.10/scalardb-cluster/getting-started-with-scalardb-cluster-sql-spring-data-jdbc.mdx @@ -106,10 +106,10 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi ## Step 3. Load a schema -To load a schema, you need to use [the SQL CLI](developer-guide-for-scalardb-cluster-with-java-api.mdx#sql-cli). You can download the SQL CLI from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.6). After downloading the JAR file, you can use SQL CLI for Cluster by running the following command: +To load a schema, you need to use [the SQL CLI](developer-guide-for-scalardb-cluster-with-java-api.mdx#sql-cli). You can download the SQL CLI from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.7). After downloading the JAR file, you can use SQL CLI for Cluster by running the following command: ```console -java -jar scalardb-cluster-sql-cli-3.10.6-all.jar --config scalardb-sql.properties --file schema.sql +java -jar scalardb-cluster-sql-cli-3.10.7-all.jar --config scalardb-sql.properties --file schema.sql ``` ## Step 4. Modify `application.properties` diff --git a/versioned_docs/version-3.10/scalardb-cluster/getting-started-with-scalardb-cluster.mdx b/versioned_docs/version-3.10/scalardb-cluster/getting-started-with-scalardb-cluster.mdx index 854f037a..1022683d 100644 --- a/versioned_docs/version-3.10/scalardb-cluster/getting-started-with-scalardb-cluster.mdx +++ b/versioned_docs/version-3.10/scalardb-cluster/getting-started-with-scalardb-cluster.mdx @@ -162,7 +162,7 @@ Then, delete the existing dependency for `com.scalar-labs:scalardb` from the `de dependencies { ... - implementation 'com.scalar-labs:scalardb-cluster-client:3.10.6' + implementation 'com.scalar-labs:scalardb-cluster-client:3.10.7' } ``` @@ -208,12 +208,12 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi The database schema (the method in which the data will be organized) for the sample application has already been defined in [`schema.json`](https://github.com/scalar-labs/scalardb-samples/tree/main/scalardb-sample/schema.json). -To apply the schema, go to [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.6) and download the ScalarDB Cluster Schema Loader to the `scalardb-samples/scalardb-sample` folder. +To apply the schema, go to [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.7) and download the ScalarDB Cluster Schema Loader to the `scalardb-samples/scalardb-sample` folder. Then, run the following command: ```console -java -jar scalardb-cluster-schema-loader-3.10.6-all.jar --config database.properties -f schema.json --coordinator +java -jar scalardb-cluster-schema-loader-3.10.7-all.jar --config database.properties -f schema.json --coordinator ``` #### Schema details diff --git a/versioned_docs/version-3.10/scalardb-cluster/getting-started-with-using-go-for-scalardb-cluster.mdx b/versioned_docs/version-3.10/scalardb-cluster/getting-started-with-using-go-for-scalardb-cluster.mdx index 2e89306d..2ce36c2a 100644 --- a/versioned_docs/version-3.10/scalardb-cluster/getting-started-with-using-go-for-scalardb-cluster.mdx +++ b/versioned_docs/version-3.10/scalardb-cluster/getting-started-with-using-go-for-scalardb-cluster.mdx @@ -77,10 +77,10 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi ## Step 3. Load a schema -To load a schema via ScalarDB Cluster, you need to use the dedicated Schema Loader for ScalarDB Cluster (Schema Loader for Cluster). Using the Schema Loader for Cluster is basically the same as using the [Schema Loader for ScalarDB](../schema-loader.mdx) except the name of the JAR file is different. You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.6). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command: +To load a schema via ScalarDB Cluster, you need to use the dedicated Schema Loader for ScalarDB Cluster (Schema Loader for Cluster). Using the Schema Loader for Cluster is basically the same as using the [Schema Loader for ScalarDB](../schema-loader.mdx) except the name of the JAR file is different. You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.7). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command: ```console -java -jar scalardb-cluster-schema-loader-3.10.6-all.jar --config database.properties -f schema.json --coordinator +java -jar scalardb-cluster-schema-loader-3.10.7-all.jar --config database.properties -f schema.json --coordinator ``` ## Step 4. Set up a Go environment diff --git a/versioned_docs/version-3.10/scalardb-cluster/getting-started-with-using-python-for-scalardb-cluster.mdx b/versioned_docs/version-3.10/scalardb-cluster/getting-started-with-using-python-for-scalardb-cluster.mdx index c8fcde1e..455dacce 100644 --- a/versioned_docs/version-3.10/scalardb-cluster/getting-started-with-using-python-for-scalardb-cluster.mdx +++ b/versioned_docs/version-3.10/scalardb-cluster/getting-started-with-using-python-for-scalardb-cluster.mdx @@ -77,10 +77,10 @@ For details about the client modes, see [Developer Guide for ScalarDB Cluster wi ## Step 3. Load a schema -To load a schema via ScalarDB Cluster, you need to use the dedicated Schema Loader for ScalarDB Cluster (Schema Loader for Cluster). Using the Schema Loader for Cluster is basically the same as using the [Schema Loader for ScalarDB](../schema-loader.mdx) except the name of the JAR file is different. You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.6). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command: +To load a schema via ScalarDB Cluster, you need to use the dedicated Schema Loader for ScalarDB Cluster (Schema Loader for Cluster). Using the Schema Loader for Cluster is basically the same as using the [Schema Loader for ScalarDB](../schema-loader.mdx) except the name of the JAR file is different. You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.10.7). After downloading the JAR file, you can run the Schema Loader for Cluster with the following command: ```console -java -jar scalardb-cluster-schema-loader-3.10.6-all.jar --config database.properties -f schema.json --coordinator +java -jar scalardb-cluster-schema-loader-3.10.7-all.jar --config database.properties -f schema.json --coordinator ``` ## Step 4. Set up a Python environment diff --git a/versioned_docs/version-3.10/scalardb-cluster/setup-scalardb-cluster-on-kubernetes-by-using-helm-chart.mdx b/versioned_docs/version-3.10/scalardb-cluster/setup-scalardb-cluster-on-kubernetes-by-using-helm-chart.mdx index e1df33e5..e3a51cbc 100644 --- a/versioned_docs/version-3.10/scalardb-cluster/setup-scalardb-cluster-on-kubernetes-by-using-helm-chart.mdx +++ b/versioned_docs/version-3.10/scalardb-cluster/setup-scalardb-cluster-on-kubernetes-by-using-helm-chart.mdx @@ -165,7 +165,7 @@ You can deploy PostgreSQL on the Kubernetes cluster as follows: 5. Set the chart version of ScalarDB Cluster. ```console - SCALAR_DB_CLUSTER_VERSION=3.12.4 + SCALAR_DB_CLUSTER_VERSION=3.12.5 SCALAR_DB_CLUSTER_CHART_VERSION=$(helm search repo scalar-labs/scalardb-cluster -l | grep -F "${SCALAR_DB_CLUSTER_VERSION}" | awk '{print $2}' | sort --version-sort -r | head -n 1) ``` diff --git a/versioned_docs/version-3.10/scalardb-sql/index.mdx b/versioned_docs/version-3.10/scalardb-sql/index.mdx index 0cccd598..d0f51072 100644 --- a/versioned_docs/version-3.10/scalardb-sql/index.mdx +++ b/versioned_docs/version-3.10/scalardb-sql/index.mdx @@ -90,10 +90,10 @@ To add a dependency on ScalarDB SQL using Gradle, use the following: ```gradle dependencies { // For Direct mode - implementation 'com.scalar-labs:scalardb-sql-direct-mode:3.10.6' + implementation 'com.scalar-labs:scalardb-sql-direct-mode:3.10.7' // For Server mode - implementation 'com.scalar-labs:scalardb-sql-server-mode:3.10.6' + implementation 'com.scalar-labs:scalardb-sql-server-mode:3.10.7' } ``` @@ -104,14 +104,14 @@ To add a dependency using Maven: com.scalar-labs scalardb-sql-direct-mode - 3.10.6 + 3.10.7 com.scalar-labs scalardb-sql-server-mode - 3.10.6 + 3.10.7 ``` diff --git a/versioned_docs/version-3.10/scalardb-sql/sql-api-guide.mdx b/versioned_docs/version-3.10/scalardb-sql/sql-api-guide.mdx index 96ba881b..6a45a84d 100644 --- a/versioned_docs/version-3.10/scalardb-sql/sql-api-guide.mdx +++ b/versioned_docs/version-3.10/scalardb-sql/sql-api-guide.mdx @@ -110,7 +110,7 @@ ResultSet resultSet = sqlSession.execute(statement); ``` `Statement` objects can be built by `StatementBuilder` that has factory methods for corresponding SQLs. -Please see [the Javadoc of `StatementBuilder`](https://javadoc.io/static/com.scalar-labs/scalardb-sql/3.11.4/com/scalar/db/sql/statement/builder/StatementBuilder.html) and [ScalarDB SQL Grammar](grammar.mdx) for more details. +Please see [the Javadoc of `StatementBuilder`](https://javadoc.io/static/com.scalar-labs/scalardb-sql/3.10.7/com/scalar/db/sql/statement/builder/StatementBuilder.html) and [ScalarDB SQL Grammar](grammar.mdx) for more details. ### Handle ResultSet objects @@ -141,7 +141,7 @@ If you want to get the metadata of the `ResultSet` object, you can use the `getC ColumnDefinitions columnDefinitions = resultSet.getColumnDefinitions(); ``` -Please see [the Javadoc of `ColumnDefinitions`](https://javadoc.io/static/com.scalar-labs/scalardb-sql/3.11.4/com/scalar/db/sql/ColumnDefinition.html) for more details. +Please see [the Javadoc of `ColumnDefinitions`](https://javadoc.io/static/com.scalar-labs/scalardb-sql/3.10.7/com/scalar/db/sql/ColumnDefinition.html) for more details. ### Handle Record objects @@ -191,7 +191,7 @@ boolean isNullGottenByName = record.isNull(""); boolean isNullGottenByIndex = record.isNull(); ``` -Please see also [the Javadoc of `Record`](https://javadoc.io/static/com.scalar-labs/scalardb-sql/3.11.4/com/scalar/db/sql/Record.html) for more details. +Please see also [the Javadoc of `Record`](https://javadoc.io/static/com.scalar-labs/scalardb-sql/3.10.7/com/scalar/db/sql/Record.html) for more details. ### Prepared Statements @@ -236,7 +236,7 @@ preparedStatement2 .execute(); ``` -Please see also [the Javadoc of `PreparedStatement`](https://javadoc.io/static/com.scalar-labs/scalardb-sql/3.11.4/com/scalar/db/sql/PreparedStatement.html) for more details. +Please see also [the Javadoc of `PreparedStatement`](https://javadoc.io/static/com.scalar-labs/scalardb-sql/3.10.7/com/scalar/db/sql/PreparedStatement.html) for more details. ## Execute transactions @@ -350,7 +350,7 @@ You can get metadata with the `SqlSession.getMetadata()` method as follows: Metadata metadata = sqlSession.getMetadata(); ``` -Please see [the Javadoc of `Metadata`](https://javadoc.io/static/com.scalar-labs/scalardb-sql/3.11.4/com/scalar/db/sql/metadata/Metadata.html) for the details. +Please see [the Javadoc of `Metadata`](https://javadoc.io/static/com.scalar-labs/scalardb-sql/3.10.7/com/scalar/db/sql/metadata/Metadata.html) for the details. ## References