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

Java로 MySQL 데이터베이스에 연결

<시간/>

아래 URL을 사용하여 MySQL 데이터베이스에 연결합니다. 구문은 다음과 같습니다 -

String MySQLURL="jdbc:mysql://localhost:3306/yourDatabaseName?useSSL=false";
String databseUserName="yourUserName";
String databasePassword="yourPassword";

예시

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
public class ConnectToDatabase {
   public static void main(String[] args) {
      String MySQLURL = "jdbc:mysql://localhost:3306/web?useSSL=false";
      String databseUserName = "root";
      String databasePassword = "123456";
      Connection con = null;
      try {
         con = DriverManager.getConnection(MySQLURL, databseUserName, databasePassword);
         if (con != null) {
            System.out.println("Database connection is successful !!!!");
         }
      } catch (Exception e) {
         e.printStackTrace();
      }
   }
}

출력

Database connection is successful !!!!

다음은 출력의 스냅샷입니다 -

Java로 MySQL 데이터베이스에 연결