回 帖 发 新 帖 刷新版面

主题:jsp页面从数据库中取值问题

String sql_1 = "select lineid from line where linenext='" +next+"'";
  ResultSet rs_1 = sql.executeQuery(sql_1);
            while (rs_1.next()) {
                  .................}
假如取出来的lineid 不止一条,怎么将其保存在一个数组里啊?

回复列表 (共2个回复)

沙发

String temp[]=new String[10];
 int i=0;
  String sql_1 = "select lineid from line where linenext='" +next+"'";
  ResultSet rs_1 = sql.executeQuery(sql_1);
            while (rs_1.next()) {
                  temp[i]=rs_1.getString("column_name");
                   i++;
               }
 //问题己帮你解决.

板凳

谢谢了

我来回复

您尚未登录,请登录后再回复。点此登录或注册