为了账号安全,请及时绑定邮箱和手机立即绑定

jdbc类问题

jdbc类问题

麦香合着月光曲 2015-07-29 10:23:12
 import java.sql.ResultSet;import java.sql.SQLException;import dao.Basedao;public class Dobaidu extends Basedao{public String[] baidu(String a){ String sql1="select * from baidu where content like ?"; String sql2="select count(*) from baidu where content like ?"; ResultSet rs=super.qurry(sql1, new Object[]{"%" + a + "%"});    ResultSet rst=super.qurry(sql2,  new Object[]{a}); String[] c = null; try { if(rst.next()){ int b=rst.getInt(1); c=new String[b]; int i=0;  while(rs.next()){  c[i]=rs.getString(2);   } i++; }else{ c=new String[1]; c[0]="fied"; } } catch (SQLException e) { e.printStackTrace(); } super.close(); return c;}}我这个有什么错??运行报 c[i]=rs.getString(2);  的错outof.....
查看完整描述

2 回答

?
麦香合着月光曲

TA贡献1条经验 获得超0个赞

谢谢 小华

查看完整回答
反对 回复 2015-08-18
?
空灵_哈哈

TA贡献3条经验 获得超0个赞

记住,使用完之后,一定要关闭连接

查看完整回答
反对 回复 2015-07-29
  • 2 回答
  • 0 关注
  • 1458 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信