Khởi tạo hằng cơ sở dữ liệu
Tạo tên người dùng cơ sở dữ liệu không đổi, mật khẩu, URL và trình điều khiển, giới hạn bỏ phiếu, v.v.
// init database constants
// com.mysql.jdbc.Driver
private static final String DATABASE_DRIVER = "com.mysql.cj.jdbc.Driver";
private static final String DATABASE_URL = "jdbc:mysql://localhost:3306/database_name";
private static final String USERNAME = "root";
private static final String PASSWORD = "";
private static final String MAX_POOL = "250"; // set your own limit
Khởi tạo kết nối và thuộc tính
Sau khi kết nối được thiết lập, tốt hơn là lưu trữ cho mục đích tái sử dụng.
// init connection object
private Connection connection;
// init properties object
private Properties properties;
Tạo thuộc tính
Đối tượng thuộc tính giữ thông tin kết nối, kiểm tra xem nó đã được đặt chưa.
// create properties
private Properties getProperties() {
if (properties == null) {
properties = new Properties();
properties.setProperty("user", USERNAME);
properties.setProperty("password", PASSWORD);
properties.setProperty("MaxPooledStatements", MAX_POOL);
}
return properties;
}
Kết nối cơ sở dữ liệu
Bây giờ kết nối với cơ sở dữ liệu bằng cách sử dụng các hằng và thuộc tính khởi tạo.
// connect database
public Connection connect() {
if (connection == null) {
try {
Class.forName(DATABASE_DRIVER);
connection = DriverManager.getConnection(DATABASE_URL, getProperties());
} catch (ClassNotFoundException | SQLException e) {
// Java 7+
e.printStackTrace();
}
}
return connection;
}
Ngắt kết nối cơ sở dữ liệu
Khi bạn đã hoàn tất các hoạt động cơ sở dữ liệu, chỉ cần đóng kết nối.
// disconnect database
public void disconnect() {
if (connection != null) {
try {
connection.close();
connection = null;
} catch (SQLException e) {
e.printStackTrace();
}
}
}
Mọi thứ cùng nhau
Sử dụng lớp này MysqlConnect
trực tiếp sau khi thay đổi cơ sở dữ liệu, tên người dùng và mật khẩu, v.v.
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.util.Properties;
public class MysqlConnect {
// init database constants
private static final String DATABASE_DRIVER = "com.mysql.cj.jdbc.Driver";
private static final String DATABASE_URL = "jdbc:mysql://localhost:3306/database_name";
private static final String USERNAME = "root";
private static final String PASSWORD = "";
private static final String MAX_POOL = "250";
// init connection object
private Connection connection;
// init properties object
private Properties properties;
// create properties
private Properties getProperties() {
if (properties == null) {
properties = new Properties();
properties.setProperty("user", USERNAME);
properties.setProperty("password", PASSWORD);
properties.setProperty("MaxPooledStatements", MAX_POOL);
}
return properties;
}
// connect database
public Connection connect() {
if (connection == null) {
try {
Class.forName(DATABASE_DRIVER);
connection = DriverManager.getConnection(DATABASE_URL, getProperties());
} catch (ClassNotFoundException | SQLException e) {
e.printStackTrace();
}
}
return connection;
}
// disconnect database
public void disconnect() {
if (connection != null) {
try {
connection.close();
connection = null;
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
Sử dụng như thế nào?
Khởi tạo lớp cơ sở dữ liệu.
// !_ note _! this is just init
// it will not create a connection
MysqlConnect mysqlConnect = new MysqlConnect();
Một nơi nào khác trong mã của bạn ...
String sql = "SELECT * FROM `stackoverflow`";
try {
PreparedStatement statement = mysqlConnect.connect().prepareStatement(sql);
... go on ...
... go on ...
... DONE ....
} catch (SQLException e) {
e.printStackTrace();
} finally {
mysqlConnect.disconnect();
}
Đây là tất cả :) Nếu bất cứ điều gì để cải thiện chỉnh sửa nó! Hy vọng điều này là hữu ích.