JAVA/이것저것 썸네일형 리스트형 이것저것2 ** DB에 있는 ROW 개수 구하는 방법 두가지1. SQL 문을 이용한 ROW 개수 카운트1) String sql = "select count(Primary key칼럼명) from 테이블명";2) int re = 0;while(rs.next()){re = rs.getInt(1);} 2. ResultSet 을 이용한 ROW 개수 카운트ResultSet rs = stmt.executeQuery("select (Primary key칼럼명) from 테이블명");rs.last();int rowcount = rs.getRow();rs.beforeFirst();// System.out.println("ROW 개수 : " + rowcount); return rowcount; 참고http://snowflower.ti.. 더보기 이것저것1 ** 과 의 차이정의: 의 defalut 값은 submit 이므로 == 기능적으로 동일 목적: form 에서 submit 기능을 추가하거나 대체하기 위한 수단으로 적합 장점: input 보다 디자인면에서 매우 자유롭다. 참고http://webdir.tistory.com/421http://nuli.navercorp.com/sharing/blog/post/2038http://jsunnylab.tistory.com/38 ** html5 에서 속성은 지원하지 않으므로 css를 이용해 만들어야 함: width, height, border, cellpadding 등 거의 대부분참고http://www.homzzang.com/b/html-68?sca=Tables ** xml 수업 내용 관련 공공데이터 사이트https:.. 더보기 이전 1 다음