MySQL 8.0.13是一個(gè)開源的關(guān)系型數(shù)據(jù)庫(kù)管理系統(tǒng),由Oracle公司開發(fā)。它提供了基于客戶端-服務(wù)器模式的高性能、可靠性和擴(kuò)展性,已成為全球廣泛應(yīng)用的數(shù)據(jù)庫(kù)管理系統(tǒng)之一。
MySQL 8.0.13 JDBC是MySQL提供的Java數(shù)據(jù)庫(kù)連接工具,用于連接MySQL數(shù)據(jù)庫(kù)并執(zhí)行操作。下面是一個(gè)簡(jiǎn)單的MySQL 8.0.13 JDBC示例:
import java.sql.*;
public class MySQLJDBCExample {
static final String DB_URL = "jdbc:mysql://localhost:3306/test";
static final String USER = "username";
static final String PASS = "password";
public static void main(String[] args) {
Connection conn = null;
Statement stmt = null;
try {
Class.forName("com.mysql.jdbc.Driver");
conn = DriverManager.getConnection(DB_URL, USER, PASS);
stmt = conn.createStatement();
String sql = "SELECT id, name, age FROM student";
ResultSet rs = stmt.executeQuery(sql);
while(rs.next()) {
int id = rs.getInt("id");
String name = rs.getString("name");
int age = rs.getInt("age");
System.out.println("id: " + id + ", name: " + name + ", age: " + age);
}
rs.close();
stmt.close();
conn.close();
} catch(SQLException se) {
se.printStackTrace();
} catch(Exception e) {
e.printStackTrace();
} finally {
try {
if(stmt!=null) stmt.close();
} catch(SQLException se2) {}
try {
if(conn!=null) conn.close();
} catch(SQLException se) {
se.printStackTrace();
}
}
}
}
這個(gè)示例連接到名為test的MySQL 8.0.13數(shù)據(jù)庫(kù),查詢學(xué)生表中的數(shù)據(jù)。