我试图从作者表中返回所有 id ......但没有工作......只是返回我的第一个 ID ......但如果我删除返回并放入打印,这给了我所有的 ID ......
String url = "jdbc:postgresql://localhost/testdb";
String user = "test";
String password = "test*";
try {
con = DriverManager.getConnection(url, user, password);
pst = con.prepareStatement("SELECT id FROM authors");
rs = pst.executeQuery();
while (rs.next()) {
return rs.getInt(1);
}