[JAVA] JDBC connection with MySQL 8.x * Notes *

Note (1): JDBC driver for MySQL 8.x

https://mvnrepository.com/artifact/mysql/mysql-connector-java/8.0.12

企业微信截图_20190320172038.png ** You can download the driver by clicking "jar". ** **

Note (2): Driver address

8.x and earlier: "com.mysql.jdbc.Driver" 8.x:「com.mysql.cj.jdbc.Driver」

Note ③: URL

8.x and earlier: "jdbc: mysql: // localhost: 3306 / testdb" 8.x:「jdbc:mysql://localhost:3306/testdb?characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2B9:00&rewriteBatchedStatements=true」

** Conclusion: The new version is a hassle: triumph :: frowning2 :: cry: **

Recommended Posts

JDBC connection with MySQL 8.x * Notes *
[Docker] Connection with MySQL
db connection notes
MySql connection error
Settings for connecting to MySQL with Spring Boot + Spring JDBC
Whether to enable SSL when using JDBC with MySQL.
[Rails] Development with MySQL
Build Rails (API) x MySQL x Nuxt.js environment with Docker
Connect to multiple MySQL instances with SSL enabled in JDBC
Try DB connection with Java
Connect to MySQL 8 with Java
Use Spring JDBC with Spring Boot
Use SpatiaLite with Java / JDBC
VisualVM (JMX connection) with Kubernetes
Try document database operations using X DevAPI with MySQL Connector / J 8.0.15
I tried connecting to MySQL using JDBC Template with Spring MVC
"Rails 6 x MySQL 8" Docker environment construction procedure for sharing with teams
List of column names when connecting.getMetaData (). GetColumns () of MySQL Table with JDBC