如何与数据库建立连接?(How to establishing a connection with Database?)
优质
小牛编辑
129浏览
2023-12-01
问题描述 (Problem Description)
如何使用JDBC连接数据库? 假设数据库名称是testDb,并且它具有名为employee的表,该表具有2条记录。
解决方案 (Solution)
以下示例使用getConnection,createStatement和executeQuery方法连接到数据库并执行查询。
import java.sql.*;
public class jdbcConn {
public static void main(String[] args) {
try {
Class.forName("org.apache.derby.jdbc.ClientDriver");
} catch(ClassNotFoundException e) {
System.out.println("Class not found "+ e);
}
System.out.println("JDBC Class found");
int no_of_rows = 0;
try {
Connection con = DriverManager.getConnection (
"jdbc:derby://localhost:1527/testDb","username", "password");
Statement stmt = con.createStatement();
ResultSet rs = stmt.executeQuery ("SELECT * FROM employee");
while (rs.next()) {
no_of_rows++;
}
System.out.println("There are "+ no_of_rows + " record in the table");
} catch(SQLException e){
System.out.println("SQL exception occured" + e);
}
}
}
结果 (Result)
上面的代码示例将产生以下结果。 结果可能会有所不同。 如果未正确安装JDBC驱动程序,您将获得ClassNotfound异常。
JDBC Class found
There are 2 record in the table