getString() 방법

String                          getString(int columnIndex)String 대상의 현재 줄에 지정된 열의 값을 자바 프로그래밍 언어ResultSet로 가져옵니다.
String getString (int columnIndex)
                 throws SQLException

Java 프로그래밍 언어로String의 형식으로 이것을 획득할 수 있습니다.ResultSet 객체의 현재 행에 지정된 열 값입니다.
 
매개변수:columnIndex - 첫 번째 열은 1, 두 번째 열은 2...
반환:
열 값,값이 SQL인 경우NULL인 경우 반환 값은null
던지기:SQLException - columnIndex가 잘못되면,데이터베이스 접근 오류가 발생하거나 닫힌 결과 집합에서 이 방법을 호출합니다
프로그램 세그먼트:
……    String name,addr;    Customer cust;    Connection con = obtainConnection();    Statement stmt = con.createStatement();    ResultSet result = stmt.executeQuery(      "SELECT cust_name, address FROM Customer "     + "WHERE ssn="+ "'"+ id + "'");    if (result.next()) {     name = result.getString(1);     addr = result.getString(2);     cust = new Customer(id,name,addr); } else {throw new Broker Exception ("사용자"+ id + "의 정보를 찾을 수 없습니다: (")   }    return cust; ……

좋은 웹페이지 즐겨찾기