Computer >> 컴퓨터 >  >> 프로그램 작성 >> MySQL

JAVA에서 MySQL 연결을 만드는 방법은 무엇입니까? locahost에 설정할 포트 번호는 무엇입니까?

<시간/>

URL에 포트 번호 3306을 사용해야 합니다. 구문은 다음과 같습니다 -

jdbc:mysql://localhost:3306

예시

import java.sql.Connection;
import java.sql.DriverManager;
public class MySQLConnectionToJava {
   public static void main(String[] args) {
      String JDBCURL="jdbc:mysql://localhost:3306/sample?useSSL=false";
      Connection con=null;
      try {
         con = DriverManager.getConnection(JDBCURL,"root","123456");
         if(con!=null) {
            System.out.println("MySQL connection is successful with port 3306.");  
         }
      }
      catch(Exception e) {
         e.printStackTrace();
      } 
   }
}

출력

MySQL connection is successful with port 3306.