📄 dbconnection.java
字号:
import java.sql.*;
import java.lang.*;
public class DBConnection {
Connection conn = null;
//Statement stmt=null;
//ResultSet rs= null;
DBConnection(){
try{
Class.forName("com.mysql.jdbc.Driver");
conn = DriverManager.getConnection("jdbc:mysql://localhost/mydata?"+
"user=root&password=123");
//stmt=conn.createStatement();
}catch (SQLException ex){
System.out.println("SQLException: " + ex.getMessage());
System.out.println("SQLState: " + ex.getSQLState());
System.out.println("VendorError: " + ex.getErrorCode());
}catch (Exception ex) {
ex.printStackTrace();
}finally{
try{
if(conn!=null){conn.close();conn=null;}
//if(stmt!=null){stmt.close();stmt=null;}
//if(rs!=null){rs.close();rs=null;}
}catch(SQLException ex){
ex.printStackTrace();
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -