?? a003962634410018187e8f4f0cfd5be6
字號:
package Dao;
import java.sql.*;
public class ConnectionManage {
private static final String DRIVER_CLASS="";
private static final String DATABASE_URI="";
private static final String DATABASE_USER="";
private static final String DATABASE_PASS="";
//返回連接
public static Connection getConnection()
{
Connection con = null;
try
{
Class.forName(DRIVER_CLASS);
con = DriverManager.getConnection(DATABASE_URI,DATABASE_USER,DATABASE_PASS);
}catch(Exception ex)
{
ex.printStackTrace();
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -