//驱动名称
private static final String DRIVE = "commicrosoftsqlserverjdbcSQLServerDriver";
//数据库连接语句
private static final String URL = "jdbc:sqlserver://localhost:1433;databaseName=GMIS ";
//数据库用户名和密码
private final String SQL_NAME = "sa";
private final String SQL_PASS = "sqlpass";
private Connection con = null;
public PreparedStatement getPreparedStatement(String sqlStr)
throws ClassNotFoundException, SQLException {
PreparedStatement pst = null;
// 加载数据库驱动
ClassforName(DRIVE);
// 获得数据库连接
if (con == null || conisClosed()) {
con = DriverManagergetConnection(URL, SQL_NAME, SQL_PASS);
}
pst = conprepareStatement(sqlStr);
return pst;
}
/
关闭数据库连接
@throws SQLException
/
public void releaes() throws SQLException {
if (con != null) {
conclose();
}
}
}
1433 是端口号。一般不改的话就是1433
localhost 是连接本机 也可写为127001(如果不是本机就输别人的IP地址)
GMIS 数据库名
SA 数据库登陆时用的登陆名(超级管理员)
sqlpass数据库登陆时用的密码]
还要加驱动包哦
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)