首页上一页 1 下一页尾页 3 条记录 1/1页
物流信息网 register_config.jsp问题
发表在JavaWeb图书答疑
2009-05-21
是否精华
是
否
版块置顶:
是
否
An error occurred at line: 25 in the jsp file: /regist_config.jsp
The method str() is undefined for the type ResultSet
22: CountTime time=new CountTime();
23: String str="select name from db_Customer where Name='"+name+"'";
24: ResultSet rs=connection.executeQuery(str);
25: if(rs.str()){
26: %>
27: <script language="javascript">
28: alert("此用户已经被占用请重新注册");
于是把25行改成 rs.next还是不行
别人说 “ResultSet rs=connection.executeQuery(str); 这句没结果,所以给你抛出空指针异常。”
我也不是很明白什么意思 希望管理员能给指点下
The method str() is undefined for the type ResultSet
22: CountTime time=new CountTime();
23: String str="select name from db_Customer where Name='"+name+"'";
24: ResultSet rs=connection.executeQuery(str);
25: if(rs.str()){
26: %>
27: <script language="javascript">
28: alert("此用户已经被占用请重新注册");
于是把25行改成 rs.next还是不行
别人说 “ResultSet rs=connection.executeQuery(str); 这句没结果,所以给你抛出空指针异常。”
我也不是很明白什么意思 希望管理员能给指点下