MariaDB Connector/J를 ​​사용하여 MariaDB 10.4에 연결

9315 단어 JDBCmariadbMariaDB10
자신의 비망록으로서, Windows 10 상에서 MariaDB Connector/J (JDBC) 2.5.2 경유로 MariaDB 10.4 에 접속하는 순서를 이하에 기재합니다.

Java 8 설치



Java SE Development Kit 8 Downloads에서 jdk-8u221-windows-x64.exe 다운로드, 설치

Eclipse 설치



이클립스 공식에서 eclipse-inst-win64.exe 다운로드, 설치

MariaDB Connector/J



MariaDB Connector/J

Eclipse : 프로젝트 생성



여기서는 test라는 프로젝트를 만들었습니다.
mariadb-java-client-2.5.2.jar



Eclipse : 클래스 작성





mariadb-java-client-2.5.2.jar을 external archive로 추가







샘플 코드 컴파일/실행



import java.sql.*;
import org.mariadb.jdbc.internal.util.constant.Version;

public class test_jdbc {
    public static void main(String[] args) {

        Connection conn = null;
        Statement stmt = null;
        try {
            Class.forName("org.mariadb.jdbc.Driver");

            System.out.println("Connector/J " + Version.version + "\n");

            System.out.print("Connecting to DB...");
            conn = DriverManager.getConnection(
                "jdbc:mariadb://192.168.2.104/mysql", "root", "password");
            System.out.println(" done.");

            stmt = conn.createStatement();
            String sql = "SELECT user,host FROM mysql.user";
            ResultSet hrs = stmt.executeQuery(sql);

            while (hrs.next()) {
                String user = hrs.getString(1);
                String host = hrs.getString(2);
                System.out.println("User: " + user + "@'" + host + "'");
            }
        } catch (SQLException se) {
            //Handle errors for JDBC
            se.printStackTrace();
        } catch (Exception e) {
            //Handle errors for Class.forName
            e.printStackTrace();
        } finally {
            //finally block used to close resources
            try {
                if (stmt != null) {
                    conn.close();
                }
            } catch (SQLException se) {} // do nothing
            try {
                if (conn != null) {
                    conn.close();
                }
            } catch (SQLException se) {
                se.printStackTrace();
            } //end finally try
        } //end try
        System.out.println("\nGoodbye!");
    }
}

실행 결과가 다음과 같이 되면 문제 없습니다.
Connector/J 2.5.2

Connecting to DB... done.
User: mysql@'localhost'
User: root@'localhost'

Goodbye!

좋은 웹페이지 즐겨찾기