在eclipse里怎么从sql2005数据库中读取数据存入数组里去?请高手帮忙解决。

2024-12-18 00:42:02
推荐回答(2个)
回答1:

首先你要回导驱动包
会配置数据库的TCP/IP的端口
会写连接数据库的代码
这里有连接数据库的代码

public class BaseDao {
static{
try {
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
//加载数据库驱动
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
//获取数据库连接的方法
public static Connection getConnection() throws SQLException{
return DriverManager.getConnection("jdbc:sqlserver://localhost:1433;databasename=JobDB","sa","accp");
}
//关闭结果集什么的
public static void close(ResultSet rs,Statement st,Connection conn){
try {
if(rs!=null){
rs.close();
}
if(st!=null){
st.close();
}
if(conn!=null){
conn.close();
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
然后这里有一个方法时调用数据库连接的,操作数据库的,返回的是一个Companyinfo对象
public Companyinfo getUser(int i) throws SQLException{
Connection conn=null;
PreparedStatement ps=null;
ResultSet rs=null;
Companyinfo user=null;
try{
conn=getConnection();//获取数据库连接
String sql="select comId,comname,comtype,comaddress,comtackinfo from TBL_COMPANYINFO where comId=?";//创建SQL语句
ps=conn.prepareStatement(sql);//获取PreparedStatement
ps.setLong(1, i);//设置?号得值,?号代表占位符
rs=ps.executeQuery();//执行SQL语句,返回结果集
if(rs.next())//如果读取到,就给对象进行赋值
{user=new Companyinfo(rs.getInt("comId"),rs.getString("comname"),rs.getString("comtype"),rs.getString("comaddress"),rs.getString("comtackinfo"));
}
}finally{
close(rs, ps, conn);//关闭获取的结果集什么的
}
return user;//返回对象
}

回答2:

好久不高了