From 42fa1ad5c8a0958aca56f8dbaa46e8a839fb9ab5 Mon Sep 17 00:00:00 2001 From: Tapac Date: Fri, 27 Dec 2019 16:00:22 +0300 Subject: [PATCH] h2 version actualized --- DataBase-and-DataSource.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DataBase-and-DataSource.md b/DataBase-and-DataSource.md index fb9614c..17551e8 100644 --- a/DataBase-and-DataSource.md +++ b/DataBase-and-DataSource.md @@ -63,7 +63,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 -compile("com.h2database:h2:1.4.197") +compile("com.h2database:h2:1.4.199") ``` * SQL Server ```kotlin