자바 는 JDBC 드라이브 로 MySQL 데이터 베 이 스 를 연결 합 니 다.

1926 단어 JavaJDBCMySQL
자바 가 JDBC 드라이브 를 사용 하여 MySQL 데이터 베 이 스 를 연결 하 는 절차:
1.드라이버 다운로드,jar 패키지 가 져 오기
2.로드 드라이브
3.연결 설정
연결 에 성공 한 후 데이터베이스 에 있 는 데이터 에 대한 조작 입 니 다.
1.드라이버 다운로드,jar 패키지 가 져 오기




jdbc 디 렉 터 리 에 해당 하 는 jar 패키지 가 있 는 것 을 보 았 을 때 첫 번 째 작업 이 완료 되 었 음 을 설명 합 니 다.
2.로드 드라이브
3.연결 설정

import java.sql.Connection; 
import java.sql.DriverManager; 
 
public class DB_Helper { 
  public static void main(String[]args) { 
     
     
    try { 
      Class.forName("com.mysql.jdbc.Driver"); //   MYSQL JDBC     
      System.out.println("      !"); 
    } catch (Exception e) { 
      System.out.print("      !"); 
      e.printStackTrace(); 
    } 
     
     
    try { 
      //public static Connection getConnection(String url,String user,String password) 
      /* 
       * url : a database url of the form jdbc:subprotocol:subname 
       * user : the database user on whose behalf the connection is being made 
       * password : the user's password 
       */ 
 
      Connection connect = DriverManager.getConnection("jdbc:mysql://localhost:3306/students", "root", ""); 
      System.out.println("       !"); 
    } catch (Exception e) { 
      System.out.print("       !"); 
      e.printStackTrace(); 
    } 
  } 
} 
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기