如何使用jdk连接mysql,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。
import java.sql.*;
public class TestJDBC {
public static void main(String[] arges) throws SQLException,ClassNotFoundException{
String user="root";
String pwd="";
//设定URL
String myjdbc="jdbc:mysql://localhost:3306/test";
//加载MYSQL驱动
Class.forName("com.mysql.jdbc.Driver");
//创建连接会话
Connection myConnection=DriverManager.getConnection(myjdbc,user,pwd);
//创建语句块对象
Statement Myoperation=myConnection.createStatement();
//获取结果集对象
ResultSet record=Myoperation.executeQuery("select *from test");
while(record.next()){
//输出结果集对象
System.out.println(record.getInt("id")+","+record.getString("name"));
}
//关闭结果集
try{
if(record!=null)
//关闭结果集时需要处理异常
record.close();
}catch(Exception e){
e.printStackTrace();
}finally{
try{
if(myConnection!=null)
myConnection.close();
}catch(Exception e){
e.printStackTrace();
}
}
}
}
看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注亿速云行业资讯频道,感谢您对亿速云的支持。