public class GetConnectionMysql {
public static Connection getConnection(){
String driver="com.mysql.jdbc.Driver"; //獲取mysql數據庫的驅動類
String url="jdbc:mysql://133.96.46.100:3306/test"; //連接數據庫(test是數據庫名)
String name="root";//連接mysql的用戶名
String pwd="root";//連接mysql的密碼
Connection conn= null;
try {
Class.forName(driver);
} catch (ClassNotFoundException e1) {
System.out.println("驅動加載失敗");
e1.printStackTrace();
}
try{
conn=DriverManager.getConnection(url,name,pwd);//獲取連接對象
System.out.println("成功連接數據庫!");
return conn;
}catch(SQLException e){
e.printStackTrace();
return null;
}finally {
if(conn!=null){
try {
conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
public static void closeAll(Connection conn,PreparedStatement ps,ResultSet rs){
try{
if(rs!=null){
rs.close();
}
}catch(SQLException e){
e.printStackTrace();
}
try{
if(ps!=null){
ps.close();
}
}catch(SQLException e){
e.printStackTrace();
}
try{
if(conn!=null){
conn.close();
}
}catch(SQLException e){
e.printStackTrace();
}
}
public static void main(String[] args) throws SQLException
{
Connection cc=GetConnectionMysql.getConnection();
}
}