본문 바로가기
728x90

비트 장기/jsp11

8/14 복습(count쓰는법? rs.next()) pageEncoding="EUC-KR"%> String id = request.getParameter("id"); int pw = Integer.parseInt(request.getParameter("pw")); try { Connection con = null; String dburl = "jdbc:oracle:thin:@127.0.0.1:1521:orcl"; String username = "c##jwh"; String password = "1"; con = DriverManager.getConnection(dburl, username, password); PreparedStatement ps = null; //String sql = String.format("sele.. 2018. 8. 16.
8/13 복습 xml위치 넣은거 확실하게 sql insert문 %d 문자열만 ' 숫자는 x 주의 뒤에는 순서대로. String sql = String.format("insert into banana values('%s',%d,%d,'%s')", name, age, salary, home); update문 set where 앞에 %x할고 where할때 ,없음 String sql = String.format( "update banana set name = '%s',age = %d,salary = %d,home = '%s'where name = '%s'", name2, age,salary, home, name); delete문String sql = String.format("delete from banana where na.. 2018. 8. 14.
8/13 jsp maven project -> create x -> maven-archetype-webapp ->위에 두개이름적고 finish webapp = webcontent ->미리 index 생성되어있음 project alt+enter ->project facets -> runtimes ->tomcat check ->apply ->apply close 컴파일-> utf-8 ->xml추가 ->alt+f5 -> 실행 내 계정이 있을시 cmd에서 create 테이블 생성 후 소스 실행시키면 안에 들어가있다. index 12345678910111213141516171819202122232425262728Hello World! insert name : age : salary : home : change name : nam.. 2018. 8. 13.
8/10 복습 맨밑 aaa,bbb,index만 할줄알아도 다아는거임 단축키 ctrl+f6 다음링크 aaa페이지로 Animal폴더 안의 bbb페이지로 다시 index페이지로상위폴더로 하나 올라가서 다시 하위폴더를 찾게됨. indexaaa페이지로aaa index aaa페이지로 aaa index 가나 aaa index 12345678 이름 : 월급 : Colored by Color Scriptercs aaa 123456789101112이름 : 연봉 : 테이블로 보기Colored by Color Scriptercs bbb 12345678910111213141516171819 이름 월급 연봉 이름 월급 연봉 Colored by Color Scriptercs 2018. 8. 11.