MariaDB Connector/J를 사용하여 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!
Reference
이 문제에 관하여(MariaDB Connector/J를 사용하여 MariaDB 10.4에 연결), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/cherubim1111/items/1267731ef92f6779d160
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
이클립스 공식에서 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!
Reference
이 문제에 관하여(MariaDB Connector/J를 사용하여 MariaDB 10.4에 연결), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/cherubim1111/items/1267731ef92f6779d160
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
여기서는 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!
Reference
이 문제에 관하여(MariaDB Connector/J를 사용하여 MariaDB 10.4에 연결), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/cherubim1111/items/1267731ef92f6779d160
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
샘플 코드 컴파일/실행
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!
Reference
이 문제에 관하여(MariaDB Connector/J를 사용하여 MariaDB 10.4에 연결), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/cherubim1111/items/1267731ef92f6779d160
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
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!
Reference
이 문제에 관하여(MariaDB Connector/J를 사용하여 MariaDB 10.4에 연결), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/cherubim1111/items/1267731ef92f6779d160텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)