diff --git a/versioned_docs/version-3.12/run-non-transactional-storage-operations-through-library.mdx b/versioned_docs/version-3.12/run-non-transactional-storage-operations-through-library.mdx index a50353c9..49807f8d 100644 --- a/versioned_docs/version-3.12/run-non-transactional-storage-operations-through-library.mdx +++ b/versioned_docs/version-3.12/run-non-transactional-storage-operations-through-library.mdx @@ -236,7 +236,7 @@ Select your build tool, and follow the instructions to add the build dependency ```gradle dependencies { - implementation 'com.scalar-labs:scalardb:3.12.4' + implementation 'com.scalar-labs:scalardb:3.12.5' } ``` @@ -247,7 +247,7 @@ Select your build tool, and follow the instructions to add the build dependency com.scalar-labs scalardb - 3.12.4 + 3.12.5 ``` @@ -268,4 +268,4 @@ The following limitations apply to non-transactional storage operations: ### Learn more -- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb/3.12.4/index.html) +- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb/3.12.5/index.html) diff --git a/versioned_docs/version-3.12/scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx b/versioned_docs/version-3.12/scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx index 5d6dba0c..80c7dabb 100644 --- a/versioned_docs/version-3.12/scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx +++ b/versioned_docs/version-3.12/scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api.mdx @@ -17,7 +17,7 @@ To add a dependency on the ScalarDB Cluster Java Client SDK by using Gradle, use ```gradle dependencies { - implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.4' + implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.5' } ``` @@ -27,7 +27,7 @@ To add a dependency by using Maven, use the following: com.scalar-labs scalardb-cluster-java-client-sdk - 3.12.4 + 3.12.5 ``` @@ -120,11 +120,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.12.4). +You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.12.5). After downloading the JAR file, you can run Schema Loader for Cluster with the following command: ```console -java -jar scalardb-cluster-schema-loader-3.12.4-all.jar --config -f --coordinator +java -jar scalardb-cluster-schema-loader-3.12.5-all.jar --config -f --coordinator ``` ## ScalarDB Cluster SQL @@ -164,8 +164,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.12.4' - implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.4' + implementation 'com.scalar-labs:scalardb-sql-jdbc:3.12.5' + implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.5' } ``` @@ -176,12 +176,12 @@ To add the dependencies by using Maven, use the following: com.scalar-labs scalardb-sql-jdbc - 3.12.4 + 3.12.5 com.scalar-labs scalardb-cluster-java-client-sdk - 3.12.4 + 3.12.5 ``` @@ -199,8 +199,8 @@ To add the dependencies by using Gradle, use the following: ```gradle dependencies { - implementation 'com.scalar-labs:scalardb-sql-spring-data:3.12.4' - implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.4' + implementation 'com.scalar-labs:scalardb-sql-spring-data:3.12.5' + implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.5' } ``` @@ -211,12 +211,12 @@ To add the dependencies by using Maven, use the following: com.scalar-labs scalardb-sql-spring-data - 3.12.4 + 3.12.5 com.scalar-labs scalardb-cluster-java-client-sdk - 3.12.4 + 3.12.5 ``` @@ -261,10 +261,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.12.4). 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.12.5). After downloading the JAR file, you can run the SQL CLI with the following command: ```console -java -jar scalardb-cluster-sql-cli-3.12.4-all.jar --config +java -jar scalardb-cluster-sql-cli-3.12.5-all.jar --config ``` #### Usage @@ -272,7 +272,7 @@ java -jar scalardb-cluster-sql-cli-3.12.4-all.jar --config You can see the CLI usage with the `-h` option as follows: ```console -java -jar scalardb-cluster-sql-cli-3.12.4-all.jar -h +java -jar scalardb-cluster-sql-cli-3.12.5-all.jar -h Usage: scalardb-sql-cli [-hs] -c=PROPERTIES_FILE [-e=COMMAND] [-f=FILE] [-l=LOG_FILE] [-o=] [-p=PASSWORD] [-u=USERNAME] @@ -303,6 +303,6 @@ For details about the ScalarDB Cluster gRPC API, refer to the following: JavaDocs are also available: -* [ScalarDB Cluster Java Client SDK](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-java-client-sdk/3.12.4/index.html) -* [ScalarDB Cluster Common](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-common/3.12.4/index.html) -* [ScalarDB Cluster RPC](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-rpc/3.12.4/index.html) +* [ScalarDB Cluster Java Client SDK](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-java-client-sdk/3.12.5/index.html) +* [ScalarDB Cluster Common](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-common/3.12.5/index.html) +* [ScalarDB Cluster RPC](https://javadoc.io/doc/com.scalar-labs/scalardb-cluster-rpc/3.12.5/index.html) diff --git a/versioned_docs/version-3.12/scalardb-cluster/getting-started-with-scalardb-cluster-graphql.mdx b/versioned_docs/version-3.12/scalardb-cluster/getting-started-with-scalardb-cluster-graphql.mdx index 0f553c33..dab5e139 100644 --- a/versioned_docs/version-3.12/scalardb-cluster/getting-started-with-scalardb-cluster-graphql.mdx +++ b/versioned_docs/version-3.12/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.12.4). +You can download the Schema Loader for Cluster from [ScalarDB Releases](https://github.com/scalar-labs/scalardb/releases/tag/v3.12.5). 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.12.4-all.jar --config database.properties -f schema.json --coordinator +java -jar scalardb-cluster-schema-loader-3.12.5-all.jar --config database.properties -f schema.json --coordinator ``` ## Step 4. Run operations from GraphiQL diff --git a/versioned_docs/version-3.12/scalardb-cluster/getting-started-with-scalardb-cluster-sql-jdbc.mdx b/versioned_docs/version-3.12/scalardb-cluster/getting-started-with-scalardb-cluster-sql-jdbc.mdx index d2d7a5c6..3e7ec389 100644 --- a/versioned_docs/version-3.12/scalardb-cluster/getting-started-with-scalardb-cluster-sql-jdbc.mdx +++ b/versioned_docs/version-3.12/scalardb-cluster/getting-started-with-scalardb-cluster-sql-jdbc.mdx @@ -85,10 +85,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.12.4). 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.12.5). 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.12.4-all.jar --config scalardb-sql.properties --file schema.sql +java -jar scalardb-cluster-sql-cli-3.12.5-all.jar --config scalardb-sql.properties --file schema.sql ``` ## Step 4. Load the initial data diff --git a/versioned_docs/version-3.12/scalardb-cluster/getting-started-with-scalardb-cluster-sql-spring-data-jdbc.mdx b/versioned_docs/version-3.12/scalardb-cluster/getting-started-with-scalardb-cluster-sql-spring-data-jdbc.mdx index 09cdfe7e..cef37821 100644 --- a/versioned_docs/version-3.12/scalardb-cluster/getting-started-with-scalardb-cluster-sql-spring-data-jdbc.mdx +++ b/versioned_docs/version-3.12/scalardb-cluster/getting-started-with-scalardb-cluster-sql-spring-data-jdbc.mdx @@ -85,10 +85,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.12.4). 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.12.5). 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.12.4-all.jar --config scalardb-sql.properties --file schema.sql +java -jar scalardb-cluster-sql-cli-3.12.5-all.jar --config scalardb-sql.properties --file schema.sql ``` ## Step 4. Modify `application.properties` diff --git a/versioned_docs/version-3.12/scalardb-cluster/getting-started-with-scalardb-cluster.mdx b/versioned_docs/version-3.12/scalardb-cluster/getting-started-with-scalardb-cluster.mdx index 804a3a2c..0ae9485a 100644 --- a/versioned_docs/version-3.12/scalardb-cluster/getting-started-with-scalardb-cluster.mdx +++ b/versioned_docs/version-3.12/scalardb-cluster/getting-started-with-scalardb-cluster.mdx @@ -119,7 +119,7 @@ To use ScalarDB Cluster, open `build.gradle` in your preferred text editor. Then dependencies { ... - implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.4' + implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.5' } ``` @@ -165,12 +165,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.12.4) 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.12.5) 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.12.4-all.jar --config database.properties -f schema.json --coordinator +java -jar scalardb-cluster-schema-loader-3.12.5-all.jar --config database.properties -f schema.json --coordinator ``` #### Schema details diff --git a/versioned_docs/version-3.12/scalardb-cluster/getting-started-with-using-go-for-scalardb-cluster.mdx b/versioned_docs/version-3.12/scalardb-cluster/getting-started-with-using-go-for-scalardb-cluster.mdx index 14e5842f..0ccba2bc 100644 --- a/versioned_docs/version-3.12/scalardb-cluster/getting-started-with-using-go-for-scalardb-cluster.mdx +++ b/versioned_docs/version-3.12/scalardb-cluster/getting-started-with-using-go-for-scalardb-cluster.mdx @@ -72,10 +72,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.12.4). 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.12.5). 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.12.4-all.jar --config database.properties -f schema.json --coordinator +java -jar scalardb-cluster-schema-loader-3.12.5-all.jar --config database.properties -f schema.json --coordinator ``` ## Step 4. Set up a Go environment diff --git a/versioned_docs/version-3.12/scalardb-cluster/getting-started-with-using-python-for-scalardb-cluster.mdx b/versioned_docs/version-3.12/scalardb-cluster/getting-started-with-using-python-for-scalardb-cluster.mdx index 2c342369..63fb84c7 100644 --- a/versioned_docs/version-3.12/scalardb-cluster/getting-started-with-using-python-for-scalardb-cluster.mdx +++ b/versioned_docs/version-3.12/scalardb-cluster/getting-started-with-using-python-for-scalardb-cluster.mdx @@ -72,10 +72,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.12.4). 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.12.5). 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.12.4-all.jar --config database.properties -f schema.json --coordinator +java -jar scalardb-cluster-schema-loader-3.12.5-all.jar --config database.properties -f schema.json --coordinator ``` ## Step 4. Set up a Python environment diff --git a/versioned_docs/version-3.12/scalardb-cluster/run-non-transactional-storage-operations-through-scalardb-cluster.mdx b/versioned_docs/version-3.12/scalardb-cluster/run-non-transactional-storage-operations-through-scalardb-cluster.mdx index 83f338a4..2fce0d59 100644 --- a/versioned_docs/version-3.12/scalardb-cluster/run-non-transactional-storage-operations-through-scalardb-cluster.mdx +++ b/versioned_docs/version-3.12/scalardb-cluster/run-non-transactional-storage-operations-through-scalardb-cluster.mdx @@ -270,7 +270,7 @@ Select your build tool, and follow the instructions to add the build dependency ```gradle dependencies { - implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.4' + implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.5' } ``` @@ -281,7 +281,7 @@ Select your build tool, and follow the instructions to add the build dependency com.scalar-labs scalardb-cluster-java-client-sdk - 3.12.4 + 3.12.5 ``` @@ -306,5 +306,5 @@ The following limitations apply to non-transactional storage operations: ### Learn more -- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb/3.12.4/index.html) +- [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb/3.12.5/index.html) - [Developer Guide for ScalarDB Cluster with the Java API](developer-guide-for-scalardb-cluster-with-java-api.mdx) diff --git a/versioned_docs/version-3.12/scalardb-cluster/run-non-transactional-storage-operations-through-sql-interface.mdx b/versioned_docs/version-3.12/scalardb-cluster/run-non-transactional-storage-operations-through-sql-interface.mdx index ae3fd3a5..c6bc77f9 100644 --- a/versioned_docs/version-3.12/scalardb-cluster/run-non-transactional-storage-operations-through-sql-interface.mdx +++ b/versioned_docs/version-3.12/scalardb-cluster/run-non-transactional-storage-operations-through-sql-interface.mdx @@ -275,8 +275,8 @@ Also, for a list of supported DDLs, see [ScalarDB SQL Grammar](../scalardb-sql/g ```gradle dependencies { - implementation 'com.scalar-labs:scalardb-sql-jdbc:3.12.4' - implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.4' + implementation 'com.scalar-labs:scalardb-sql-jdbc:3.12.5' + implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.5' } ``` @@ -288,12 +288,12 @@ Also, for a list of supported DDLs, see [ScalarDB SQL Grammar](../scalardb-sql/g com.scalar-labs scalardb-sql-jdbc - 3.12.4 + 3.12.5 com.scalar-labs scalardb-cluster-java-client-sdk - 3.12.4 + 3.12.5 ``` @@ -340,8 +340,8 @@ The following limitations apply to non-transactional storage operations: ```gradle dependencies { - implementation 'com.scalar-labs:scalardb-sql:3.12.4' - implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.4' + implementation 'com.scalar-labs:scalardb-sql:3.12.5' + implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.12.5' } ``` @@ -353,12 +353,12 @@ The following limitations apply to non-transactional storage operations: com.scalar-labs scalardb-sql - 3.12.4 + 3.12.5 com.scalar-labs scalardb-cluster-java-client-sdk - 3.12.4 + 3.12.5 ``` @@ -386,7 +386,7 @@ The following limitations apply to non-transactional storage operations:

Learn more

- - [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb-sql/3.12.4/index.html) + - [Javadoc](https://javadoc.io/doc/com.scalar-labs/scalardb-sql/3.12.5/index.html) diff --git a/versioned_docs/version-3.12/scalardb-cluster/setup-scalardb-cluster-on-kubernetes-by-using-helm-chart.mdx b/versioned_docs/version-3.12/scalardb-cluster/setup-scalardb-cluster-on-kubernetes-by-using-helm-chart.mdx index 2f7fc7ee..8eff8d1c 100644 --- a/versioned_docs/version-3.12/scalardb-cluster/setup-scalardb-cluster-on-kubernetes-by-using-helm-chart.mdx +++ b/versioned_docs/version-3.12/scalardb-cluster/setup-scalardb-cluster-on-kubernetes-by-using-helm-chart.mdx @@ -169,7 +169,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.12/scalardb-sql/index.mdx b/versioned_docs/version-3.12/scalardb-sql/index.mdx index 95d3f44b..d6ad61b9 100644 --- a/versioned_docs/version-3.12/scalardb-sql/index.mdx +++ b/versioned_docs/version-3.12/scalardb-sql/index.mdx @@ -88,10 +88,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.12.4' + implementation 'com.scalar-labs:scalardb-sql-direct-mode:3.12.5' // For Server mode - implementation 'com.scalar-labs:scalardb-sql-server-mode:3.12.4' + implementation 'com.scalar-labs:scalardb-sql-server-mode:3.12.5' } ``` @@ -102,14 +102,14 @@ To add a dependency using Maven: com.scalar-labs scalardb-sql-direct-mode - 3.12.4 + 3.12.5 com.scalar-labs scalardb-sql-server-mode - 3.12.4 + 3.12.5 ``` diff --git a/versioned_docs/version-3.12/scalardb-sql/jdbc-guide.mdx b/versioned_docs/version-3.12/scalardb-sql/jdbc-guide.mdx index d521adec..3157f108 100644 --- a/versioned_docs/version-3.12/scalardb-sql/jdbc-guide.mdx +++ b/versioned_docs/version-3.12/scalardb-sql/jdbc-guide.mdx @@ -191,4 +191,4 @@ Please see also [ScalarDB SQL API Guide](sql-api-guide.mdx) for more details on - [Java JDBC API](https://docs.oracle.com/javase/8/docs/technotes/guides/jdbc/) - [ScalarDB SQL API Guide](sql-api-guide.mdx) -- [Javadoc for ScalarDB JDBC](https://javadoc.io/doc/com.scalar-labs/scalardb-sql-jdbc/3.12.4/index.html) +- [Javadoc for ScalarDB JDBC](https://javadoc.io/doc/com.scalar-labs/scalardb-sql-jdbc/3.12.5/index.html) diff --git a/versioned_docs/version-3.12/scalardb-sql/spring-data-guide.mdx b/versioned_docs/version-3.12/scalardb-sql/spring-data-guide.mdx index 39440b6f..de8cbec4 100644 --- a/versioned_docs/version-3.12/scalardb-sql/spring-data-guide.mdx +++ b/versioned_docs/version-3.12/scalardb-sql/spring-data-guide.mdx @@ -799,4 +799,4 @@ In order to use Spring Data JDBC for ScalarDB, the following features are implem - [Spring Data JDBC - Reference Documentation](https://docs.spring.io/spring-data/jdbc/docs/3.0.x/reference/html/) - [ScalarDB JDBC Guide](jdbc-guide.mdx) -- [Javadoc for Spring Data JDBC for ScalarDB](https://javadoc.io/doc/com.scalar-labs/scalardb-sql-spring-data/3.12.4/index.html) +- [Javadoc for Spring Data JDBC for ScalarDB](https://javadoc.io/doc/com.scalar-labs/scalardb-sql-spring-data/3.12.5/index.html) diff --git a/versioned_docs/version-3.12/scalardb-sql/sql-api-guide.mdx b/versioned_docs/version-3.12/scalardb-sql/sql-api-guide.mdx index 1c7917a7..b0cbe176 100644 --- a/versioned_docs/version-3.12/scalardb-sql/sql-api-guide.mdx +++ b/versioned_docs/version-3.12/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.12.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.12.5/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.12.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.12.5/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.12.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.12.5/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.12.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.12.5/com/scalar/db/sql/PreparedStatement.html) for more details. ## Execute transactions @@ -350,10 +350,10 @@ 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.12.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.12.5/com/scalar/db/sql/metadata/Metadata.html) for the details. ## References - [ScalarDB SQL Grammar](grammar.mdx) - [Two-phase Commit Transactions](../two-phase-commit-transactions.mdx) -- [Javadoc for ScalarDB SQL](https://javadoc.io/doc/com.scalar-labs/scalardb-sql/3.12.4/index.html) +- [Javadoc for ScalarDB SQL](https://javadoc.io/doc/com.scalar-labs/scalardb-sql/3.12.5/index.html)