- 1
- 2
- 3
- 4
- 5
- 6
- 7
PreparedStatement ps = conn.prepareStatement(
"SELECT * FROM Task;");
ResultSet rs = ps.executeQuery();
while (rs.next()) {
logger.info(rs.getInt(1));
this.projects = new ProjectCollection.Project[rs.getInt(1)];
}
Комментарии (0) RSS
Добавить комментарий