Myeclipse怎么样连接SqlServer2000数据库
发布网友
发布时间:2023-03-19 03:39
我来回答
共2个回答
热心网友
时间:2023-07-14 01:32
将sql2000的jdbc驱动包添加到你的工程目录下的webroot/lib下面
然后采用如下连接语句:
private static final Log log = LogFactory.getLog(DatabaseUtils.class);
Connection conn = getConnection();
//连接数据库
public static Connection getConnection(){
try {
Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
return DriverManager.getConnection("jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=FOODS","sa","123");
} catch (ClassNotFoundException e)
{
e.printStackTrace();
log.error("未找到数据库连接驱动.");
System.exit(1);
return null;
} catch (SQLException e) {
e.printStackTrace();
throw new RuntimeException("获取数据库连接异常.");
}
}
//用户登录
public ResultSet Login(String userName,String password ) {
try {
Statement statement1 = conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
String sql1="select * from UserInfo where userName='"+userName+"' and password='"+password+"'";
java.sql.ResultSet Resultset1 = statement1.executeQuery(sql1);
log.info("登录");
return Resultset1;
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException(e);
}
}
热心网友
时间:2023-07-14 01:33
MyEclipse Database 在安装Myeclipse的时候把它的这个插件装上!