对mysql数据的连接操作和关闭
Posted Jourly的测试博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了对mysql数据的连接操作和关闭相关的知识,希望对你有一定的参考价值。
操作步骤:
1.加载数据库驱动(先在工程里加载数据库对应的驱动包)
2.获取连接
3.根据连接建立一个可执行sql的对象
4.执行sql语句
5.关闭连接
代码:
package database; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; public class mysqlTest { public static void main(String[] args) { Connection conn = null; Statement stmt = null; ResultSet rs = null; try {//加载驱动 Class.forName("com.mysql.jdbc.Driver"); } catch (ClassNotFoundException e) { e.printStackTrace(); } try {//获取连接 jdbc:mysql:// 这一段是固定格式,localhost是服务器地址,3306是端口,服务器安装的时候配置的,root是用户名,写死的,密码是安装服务器的时候配置的。 conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/mydata","root",""); } catch (SQLException e) { e.printStackTrace(); } try {//根据连接获取一个执行sql语句的对象 stmt = conn.createStatement(); } catch (SQLException e) { e.printStackTrace(); } try {//执行sql语句 rs = stmt.executeQuery("select * from dept"); } catch (SQLException e) { e.printStackTrace(); } try {//打印表里的内容,下标从1开始 while(rs.next()){ System.out.print(rs.getString(1)+" "); System.out.print(rs.getString(2)+" "); System.out.print(rs.getString(3)); System.out.println(); } } catch (SQLException e) { e.printStackTrace(); } try {//关闭连接 conn.close(); } catch (SQLException e) { e.printStackTrace(); } } }
以上是关于对mysql数据的连接操作和关闭的主要内容,如果未能解决你的问题,请参考以下文章