Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CustomContent format in note #11601

Merged
merged 4 commits into from
Dec 13, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
19 changes: 9 additions & 10 deletions develop/dev-guide-choose-driver-or-orm.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,12 @@ summary: Learn how to choose a driver or ORM framework to connect to TiDB.
>
> - **Full**: indicates that using this driver or ORM does not have any known issues.
> - **Verified**: indicates that using this driver or ORM might get errors because of compatibility differences between TiDB and MySQL.

<CustomContent platform="tidb">

>
> <CustomContent platform="tidb">
>
> For more information, refer to [Third-Party Tools Supported by TiDB](/develop/dev-guide-third-party-support.md).
Oreoxmt marked this conversation as resolved.
Show resolved Hide resolved

</CustomContent>
>
> </CustomContent>

TiDB is highly compatible with the MySQL protocol but some features are incompatible with MySQL.

Expand Down Expand Up @@ -109,12 +108,12 @@ implementation group: 'org.bouncycastle', name: 'bcpkix-jdk15on', version: '1.67
> **Note:**
>
> - Currently, Hibernate does [not support nested transactions](https://stackoverflow.com/questions/37927208/nested-transaction-in-spring-app-with-jpa-postgres).

<CustomContent platform="tidb">

>
> <CustomContent platform="tidb">
>
> - Since v6.2.0, TiDB supports [savepoint](/sql-statements/sql-statement-savepoint.md). To use the `Propagation.NESTED` transaction propagation option in `@Transactional`, that is, to set `@Transactional(propagation = Propagation.NESTED)`, make sure that your TiDB is v6.2.0 or later.
Oreoxmt marked this conversation as resolved.
Show resolved Hide resolved

</CustomContent>
>
> </CustomContent>

<SimpleTab>
<div label="Hibernate">
Expand Down