Skip to content

Commit 0023666

Browse files
committed
AUTO: Sync ScalarDB docs in English to docs site repo
1 parent 104accb commit 0023666

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

versioned_docs/version-3.11/overview.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ This page describes what ScalarDB is and its primary use cases.
1111

1212
## What is ScalarDB?
1313

14-
ScalarDB is a hybrid transaction/analytical processing (HTAP) engine for diverse databases. It runs as middleware on databases and virtually unifies diverse databases by achieving ACID transactions and real-time analytics across them to simplify the complexity of managing multiple databases or multiple instances of a single database.
14+
ScalarDB is a universal hybrid transaction/analytical processing (HTAP) engine for diverse databases. It runs as middleware on databases and virtually unifies diverse databases by achieving ACID transactions and real-time analytics across them to simplify the complexity of managing multiple databases or multiple instances of a single database.
1515

1616
![How ScalarDB simplifies complex data management architecture.](images/scalardb.png)
1717

1818
As a versatile solution, ScalarDB supports a range of databases, including:
1919

20-
- Relational databases that support JDBC, such as MariaDB, Microsoft SQL Server, MySQL, Oracle Database, PostgreSQL, SQLite, and their compatible databases, like Amazon Aurora, Google AlloyDB, TiDB, and YugabyteDB.
20+
- Relational databases that support JDBC, such as MariaDB, Microsoft SQL Server, MySQL, Oracle Database, PostgreSQL, SQLite, and their compatible databases, like Amazon Aurora and YugabyteDB.
2121
- NoSQL databases like Amazon DynamoDB, Apache Cassandra, and Azure Cosmos DB.
2222

2323
For details on which databases ScalarDB supports, refer to [Databases](requirements.mdx#databases).

versioned_docs/version-3.11/scalardb-sql/spring-data-guide.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ Directly using the ScalarDB API may be difficult because you need to write a lot
1212
The usage of Spring Data JDBC for ScalarDB basically follows [Spring Data JDBC - Reference Documentation](https://docs.spring.io/spring-data/jdbc/docs/3.0.x/reference/html/).
1313
This guide describes several important topics to use Spring Data JDBC for ScalarDB and its limitations.
1414

15+
:::warning
16+
17+
Spring Data JDBC for ScalarDB extends Spring Data JDBC, but full compatibility is not guaranteed. Only the features listed on this page are officially tested and supported.
18+
19+
:::
20+
1521
## Add Spring Data JDBC for ScalarDB to your project
1622

1723
To add the dependencies on Spring Data JDBC for ScalarDB by using Gradle, use the following, replacing `<VERSION>` with the versions of Spring Data JDBC for ScalarDB and the related library, respectively, that you are using:

versioned_docs/version-3.11/schema-loader.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ The following table shows the supported data types in ScalarDB and their mapping
532532
|-----------|-----------|---------------------|----------|----------|------------------|----------------|-----------------|---------|
533533
| BOOLEAN | boolean | boolean (JSON) | BOOL | boolean | boolean | number(1) | bit | boolean |
534534
| INT | int | number (JSON) | N | int | int | int | int | int |
535-
| BIGINT | bigint | number (JSON) | N | bigint | bigint | number(19) | bigint | bigint |
535+
| BIGINT | bigint | number (JSON) | N | bigint | bigint | number(16) | bigint | bigint |
536536
| FLOAT | float | number (JSON) | N | double | float | binary_float | float(24) | float |
537537
| DOUBLE | double | number (JSON) | N | double | double precision | binary_double | float | double |
538538
| TEXT | text | string (JSON) | S | longtext | text | varchar2(4000) | varchar(8000) | text |

0 commit comments

Comments
 (0)