From b802130c9e954fcac4ac10f839cb0bccddd5a004 Mon Sep 17 00:00:00 2001 From: "Andrey.Tarashevskiy" Date: Sun, 14 Aug 2022 19:00:39 +0300 Subject: [PATCH] h2 version updated --- DataBase-and-DataSource.md | 2 +- LibDocumentation.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DataBase-and-DataSource.md b/DataBase-and-DataSource.md index c66122b..2af19d0 100644 --- a/DataBase-and-DataSource.md +++ b/DataBase-and-DataSource.md @@ -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 diff --git a/LibDocumentation.md b/LibDocumentation.md index 1e49cdd..62f337e 100644 --- a/LibDocumentation.md +++ b/LibDocumentation.md @@ -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")