From 23ad3ec62cd7e493624bbcabaf04f18b02d87bf1 Mon Sep 17 00:00:00 2001 From: Sean McIlvenna Date: Wed, 22 May 2019 16:01:58 -0700 Subject: [PATCH] Update README.md Changing recommended MySql dialect to org.hibernate.dialect.MySQL5InnoDBDialect in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6796ca3..11db3ec 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ To configure the starter app to use MySQL, instead of the default Derby, update * datasource.driver=com.mysql.jdbc.Driver * datasource.url=jdbc:mysql://localhost:3306/hapi_dstu3 -* hibernate.dialect=org.hibernate.dialect.MySQL5Dialect +* hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect It is important to use MySQL5Dialect when using MySQL version 5+.