Mysql測試鏈接


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();
	}
}

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM