基本步骤
使用Java操作MySQL按步骤分为:
- 加载驱动
- 建立连接
- 创建Statement对象
- 传递SQL语句,并获取执行的结果集
- 遍历结果集
- 关闭Statement对象
- 关闭连接
涉及知识:
- 类加载
- 集合
- 错误处理机制
可能遇到的情况:
情况1
运行提示:
Sat Dec 22 19:29:22 CST 2018 WARN:
Establishing SSL connection without server's identity verification is not recommended.
According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set.
For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'.
You need either to explicitly disable SSL by setting useSSL=false,
or set useSSL=true and provide truststore for server certificate verification.
原因分析:
原本的驱动器不赞成 或者 是废弃了,自动换成了新的驱动器 com.mysql.cj.jdbc.Driver
。
解决方法:
将Class.forName()
中传递的值换成com.mysql.cj.jdbc.Driver
即可。
情况2
运行提示:
Sat Dec 22 19:29:23 CST 2018 WARN: Caught while disconnecting...
EXCEPTION STACK TRACE:
** BEGIN NESTED EXCEPTION **
javax.net.ssl.SSLException
MESSAGE: closing inbound before receiving peer's close_notify
STACKTRACE:
javax.net.ssl.SSLException: closing inbound before receiving peer's close_notify
at java.base/sun.security.ssl.Alert.createSSLException(Alert.java:129)
at java.base/sun.security.ssl.Alert.createSSLException(Alert.java:117)
at java.base/sun.security.ssl.TransportContext.fatal(TransportContext.java:308)
at java.base/sun.security.ssl.TransportContext.fatal(TransportContext.java:264)
at java.base/sun.security.ssl.TransportContext.fatal(TransportContext.java:255)
at java.base/sun.security.ssl.SSLSocketImpl.shutdownInput(SSLSocketImpl.java:645)
at java.base/sun.security.ssl.SSLSocketImpl.shutdownInput(SSLSocketImpl.java:624)
at com.mysql.cj.mysqla.io.MysqlaProtocol.quit(MysqlaProtocol.java:1261)
at com.mysql.cj.mysqla.MysqlaSession.quit(MysqlaSession.java:314)
at com.mysql.cj.jdbc.ConnectionImpl.realClose(ConnectionImpl.java:1950)
at com.mysql.cj.jdbc.ConnectionImpl.close(ConnectionImpl.java:740)
at ConnectDemo.main(ConnectDemo.java:35)
** END NESTED EXCEPTION **
原因分析:
MySQL 8.0 以上版本,数据库 URL 需要声明是否使用 SSL 安全验证及指定服务器上的时区
解决方案:
在数据库地址上加上?useSSL=false&serverTimezone=UTC
,如下:
static final String DB_URL = "jdbc:mysql://localhost:3306/empmgs?useSSL=false&serverTimezone=UTC";
例子
附上可以用的例子:
MySQL连接
数据库表的信息:
对应表的信息
运行效果图:
运行截图
网友评论