ResultSet rs = stmt.executeQuery("select * from bulletin_board2");
rs.last();
while(rs.previous())
{
//작업
}
rs.last()에서 에러나는데 왜 그럼??
ResultSet rs = stmt.executeQuery("select * from bulletin_board2");
rs.last();
while(rs.previous())
{
//작업
}
rs.last()에서 에러나는데 왜 그럼??
jdbc 공부중인거 같은데
https://allg.tistory.com/21
여기보고 차근차근 다시해보셈