java 中数据库连接的JDBC和驱动程序的深入分析
理解:
java应用程序与数据库建立连接时,先通过jdbc(jdbc是属于jdk带有的)与数据库厂商提供的驱动程序通信,而驱动程序再与数据库通信。
数据库厂商提供的驱动程序:
数据库的种类有多种,比如mysql、oracle等,不同的数据库有不同的驱动程序。所以在进行其他操作前,首先要下载导入对应的驱动程序jar包。
连接测试步骤:
先声明所用到的数据库的url、用户名和密码(数据库的)
1
2
3
|
private static String url= "jdbc:mysql://localhost:3306/mydb" ;
private static String name= "root" ;
private static String password= "1234" ;
|
1.载入驱动程序
2.使用connect与数据库建立连接
载入驱动程序有两种方式:
1
2
3
4
5
6
7
8
9
10
11
12
|
public static void main(String[] args) {
try {
//载入驱动程序
Class.forName( "com.mysql.jdbc.Driver" );
//使用connect与数据库建立连接
Connection connection=(Connection) DriverManager.getConnection(url,name,password);
System.out.println( "数据库连接成功" );
} catch (Exception e) {
System.out.println( "数据库连接失败" );
e.printStackTrace();
}
}
|
或者:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
public static void main(String[] args) {
try {
//载入驱动程序
Driver driver= new Driver();
DriverManager.registerDriver(driver); //
//使用connect与数据库建立连接
Connection connection=(Connection) DriverManager.getConnection(url,name,password);
System.out.println( "数据库连接成功" );
} catch (Exception e) {
System.out.println( "数据库连接失败" );
e.printStackTrace();
}
}
|
输出:
数据库连接成功
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
原文链接:http://www.cnblogs.com/neu-student/p/6492812.html