使用jdbc连接数据库,并对数据库中表进行操作。
import java.sql.*;
public class Demo{
static final String JDBC_Driver="com.mysql.jdbc.Driver";
static final String DataBase_URL="xxxxxxx";
static final String User="aaaaaa";
static final String Password="bbbbbbb";
public static void main(String[] args){
Connection conn=null;
Statement sta=null;
try{
//注册JDBC驱动
Class.forName(JDBC_Driver);
//打开链接
conn=DriverManager.getConnection(DataBase_URL,User,Password);
//对数据库中表进行操作
sta=conn.createStatement();
String sql="SELECT * FROM XX";
ResultSet rset=sta.executeQuery(sql);
//显示查询记录
while(rset.next()){
String xxx=rset.getString("xxx");
System.out.print("xxx:"+xxx);
}
//关闭连接
rset.close();
sta.close();
conn.close();
}catch(SQLException se){
se.printStackTrace();
}catch(Exception e){
e.printStackTrace();
}finally{
try{
if(sta!=null){
sta.close();
}
}catch(SQLException se2){
}
try{
if(conn!=null){
conn.close();
}
}catch(SQLException se3){
se3.printStackTrace();
}
}
}
}