?? d0808f2034410018187e8f4f0cfd5be6
字號(hào):
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)
{
}
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -