자바 연결 mysql 데이터베이스 상세 절차 분석


첫 번 째 단계:JDBC 드라이버 패 키 지 를 다운로드 합 니 다.예 를 들 어 제 가 사용 하 는 것 은 my sql-connector-java-5.1.17-bin.jar 입 니 다.
두 번 째 단계:다운 로드 된 JDBC 드라이버 패 키 지 를 가 져 옵 니 다.저 는 my eclipse 를 사용 합 니 다.패 키 지 를 가 져 올 항목 을 선택 하고 오른쪽 에 있 습 니 다.   propertise 를 선택 하고 자바 빌 드 경 로 를 선택 하면 오른쪽 에 라 이브 러 리 가 나타 납 니 다.누 르 고 External JARs 추가  그리고 가 져 올 드라이버 를 찾 으 세 요.끝 난 후에 Order and Export 를 누 르 고 가 져 온 가방 을 선택 하 십시오.
세 번 째 단계:드라이버 불 러 오기:Class.forName("com.mysql.jdbc.Driver");
STEP 4:데이터베이스 연결:Connection  conn=DriverManager.getConnection ("jdbc:mysql://localhost/데이터베이스 이름","root","123456");
다섯 번 째 단계:sql 문 구 를 실행 하 는 데 사용 되 는 Statement 성명:Statement stmt=conn.createStatement();
여섯 번 째 단계:sql 문 구 를 실행 하 는 데 이 터 를 연결 하 는 결과 집합 을 설명 합 니 다.  ResultSet rs=stmt.executeQuery("select*from 표 이름");
다음은 완전한 코드 를 드 리 겠 습 니 다:

 try {
   Class.forName("com.mysql.jdbc.Driver");
   System.out.println(" ");
   Connection conn=DriverManager.getConnection("jdbc:mysql://localhost/myschool","root","123456");
   System.out.println("conn-------------"+conn);
   Statement stmt=conn.createStatement();
   ResultSet rs=stmt.executeQuery("select * from admin");
   while(rs.next()){                         
    String name=rs.getString("name");
    String pwd=rs.getString("pwds");
    System.out.println("name------"+name+"--------pwd-"+pwd);
   }
  } catch (ClassNotFoundException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  } catch (SQLException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }

좋은 웹페이지 즐겨찾기