我的代码访问本地数据库时遇到问题。我正在使用Eclipse和postgresql。
我很清楚,已经有很多类似的帖子,但是它们并没有帮助我解决我的问题,所以这就是为什么我问自己。
驱动程序的jar文件已经在库中,并且也添加到了构建路径中。但是我仍然从找不到驱动程序的错误中得到错误。
无法获得连接:java.sql.SQLException:找不到适用于psql -h localhost beleg postgres的驱动程序
我的代码如下:
package DB;
import java.sql.*;
public class Connections {
private Connection dbcon;
private Statement stmt;
private Statement stmt2;
Connections(String db_url, String username, String password) {
try {
Class.forName("org.postgresql.Driver");
dbcon = DriverManager.getConnection(db_url, username, password);
stmt = dbcon.createStatement();
stmt2 = dbcon.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_READ_ONLY);
} catch (Exception e) {
System.out.println("Can't get a connection: " + e.toString());
try {
if (stmt != null)
stmt.close();
} catch (SQLException f) {
}
try {
if (stmt2 != null)
stmt2.close();
} catch (SQLException f) {
}
try {
if (dbcon != null)
dbcon.close();
} catch (SQLException f) {
}
System.exit(0);
}
}