Notice
Recent Posts
Recent Comments
- Today
- Total
내 머릿속 데이터베이스
어느것이 더 효율적인가. 본문
if(rs.next()) {
}
do {
}while(rs.next());
------------------------------
if(rs == null) {
}
while(rs.next()){
}
}
do {
}while(rs.next());
------------------------------
if(rs == null) {
}
while(rs.next()){
}
Comments