h2 version updated

This commit is contained in:
Andrey.Tarashevskiy
2022-08-14 19:00:39 +03:00
parent d77776ca92
commit b802130c9e
2 changed files with 2 additions and 2 deletions

View File

@@ -89,7 +89,7 @@ Database.connect("jdbc:h2:mem:regular", "org.h2.Driver")
// In memory / keep alive between connections/transactions
Database.connect("jdbc:h2:mem:regular;DB_CLOSE_DELAY=-1;", "org.h2.Driver")
//Gradle
implementation("com.h2database:h2:1.4.202")
implementation("com.h2database:h2:2.1.214")
```
* SQL Server
```kotlin

View File

@@ -136,7 +136,7 @@ You also need a JDBC driver for the database system you are using (see [[DataBas
```kotlin
dependencies {
// for H2
implementation("com.h2database:h2:1.4.202")
implementation("com.h2database:h2:2.1.214")
// for logging (StdOutSqlLogger), see
// http://www.slf4j.org/codes.html#StaticLoggerBinder
implementation("org.slf4j:slf4j-nop:1.7.30")