Hi guys, i’ve a grails 3.1. project that use a MyS...
# questions
l
Hi guys, i’ve a grails 3.1. project that use a MySQL 5.7 DB I need to upgrade the MySQL server version to MySQL 8 There is a way to handle it with grails 3.1.1? What is the minor grails version for handle MySQL 8? After some research i found that the minimal version for MySQL 8 is Grails 4 (that support Hibernate 5.3.x +) is that true or is there a workaround for use MySQL8 Dialect with grails 3.1.x or grails 3.2.x?
d
We are using grails 3.3.8 with MySQL 8 not issues
l
What version of hibernate do you have? What dialect class do you apply?
d
Let me check and get back to you
l
Thank you so much
d
Copy code
grailsVersion=3.3.8
gormVersion=6.1.11.1.RELEASE
gradleWrapperVersion=3.5
Copy code
dialect: com.mysql.jdbc.Driver
l
Thank you so much, i will try it
Do you have the hibernate dialect class This one
d
as far as i can tell we dont set that
except in the dev env where its driverClassName: com.mysql.cj.jdbc.Driver dialect: org.hibernate.dialect.MySQL5InnoDBDialect
l
okok thank you for the support
d
np good luck!
l
Thank you 🤣