我使用PostgreSQL创建我的数据库并将我的用户列表保存到它,当我尝试通过java jdbc连接db时,我收到错误说:
“java.sql.SQLException:无效的数据库地址: JDBC:在PostgreSQL://本地主机:5432 /用户”
我使用PostgreSQL网站上的“JDBC41 Postgresql驱动程序,版本9.3-1102”。 这是我的代码:
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
public class javaconnect {
private static Connection c = null;
public static Connection connectDb() {
try {
Class.forName("org.postgresql.Driver");
c = DriverManager.getConnection("jdbc:postgresql://localhost:5432/users", "postgres", "12345");
return c;
} catch (ClassNotFoundException | SQLException e) {
System.err.println(e.getClass().getName() + ": " + e.getMessage());
System.exit(0);
return null;
}
}
}
感谢。
答案 0 :(得分:5)
作为错误,
“java.sql.SQLException:无效的数据库地址:
表示您的数据库名称不正确。如果您安装了sql developer
,请检查数据库名称。
应在"jdbc:postgresql://localhost:5432/users"
/localhost:5432/
指定有效的数据库名称
使用jdbc
读取JDBC using postgresql以连接到PostgreSQL
数据库