我面临错误,org.postgresql.util.PSQLException: FATAL: 数据库“”不存在
Java代码部署在AWS lambda中以连接RDS中运行的postgres数据库。
代码
String jdbcUrl = "jdbc:postgresql://database-1.cfgz85wxhk0z.eu-west-1.rds.amazonaws.com:5432/postgres";
Connection connection = null;
try {
connection = DriverManager.getConnection(jdbcUrl, "database_name", "Password");
Statement st = connection.createStatement();
st.execute("select * from <schema>.employee;");
} catch (SQLException e) {
e.printStackTrace();
} catch(Exception e) {
e.printStackTrace();
}
胡说叔叔
弑天下
Cats萌萌
相关分类