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

Java를 MySQL에 연결하는 방법은 무엇입니까?

<시간/>

Java를 MySQL에 연결하기 위한 Java 코드는 다음과 같습니다. -

import java.sql.Connection;
import java.sql.DriverManager;
public class LostConnectionURLDemo {
   public static void main(String[] args){
      String JDBCURL="jdbc:mysql://localhost:3306/web?autoReconnect=true";
      Connection con=null;
       try{
          con = DriverManager.getConnection(JDBCURL,"root","123456");
          System.out.println("connection is established");
       }
      catch(Exception e){
         e.printStackTrace();
      }
   }
}

이것은 다음과 같은 출력을 생성합니다 -

Java를 MySQL에 연결하는 방법은 무엇입니까?