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

jdbc连接数据库 Statement的executeQuery方法报空指针异常?

jdbc连接数据库 Statement的executeQuery方法报空指针异常?

汪汪一只猫 2018-12-07 05:13:06
Connection conn = null; Statement stmt = null; ResultSet rs = null; String membertype = "";//登录用户类型 try { StringBuffer sb = new StringBuffer(); sb.append(" select membertype from m_b_broker where brokerid='"+logonUser+"' "); System.out.print(sb); rs = stmt.executeQuery(sb.toString());   //这里报出空指针异常 System.out.print("1111"); while (rs.next()) { membertype=rs.getString("membertype"); } rs.close(); rs = null; stmt.close(); stmt = null; conn.close(); conn = null; } catch (Exception e) { e.printStackTrace(); } finally { try { if (rs != null) { rs.close(); rs = null; } if (stmt != null) { stmt.close(); stmt = null; } if (conn != null) { conn.close(); conn = null; } } catch (SQLException e) { e.printStackTrace(); } } return membertype;
查看完整描述

3 回答

?
一只名叫tom的猫

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

是别的文件有问题  这个项目的jar包和写法不是正常的jdbc 

查看完整回答
反对 回复 2018-12-16
?
慕森卡

TA贡献1806条经验 获得超8个赞

Statement stmt = null;

你的Statement 没有初始化啊

查看完整回答
反对 回复 2018-12-16
?
绝地无双

TA贡献1946条经验 获得超4个赞

Connection conn=DriverManager.getConnection();

。。。。

。。。。

stateMent state=conn.createStateMent();

.......

.......

查看完整回答
反对 回复 2018-12-16
  • 3 回答
  • 0 关注
  • 1372 浏览

添加回答

举报

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