preparedstatement的空指针异常

publicclassDAO{publicstaticConnectiongetConnection(){Connectionconn=null;Stringdriver... public class DAO
{
public static Connection getConnection()
{
Connection conn=null;
String driver="com.mysql.jdbc.Driver";
String url="jdbc:mysql://localhost:3306/web";
try
{
Class.forName(driver);
conn=DriverManager.getConnection(url,"root","123456");
}catch(Exception e)
{
e.printStackTrace();
}
return conn;
}

public static boolean verifyLogin(String username,String password,Connection conn) throws SQLException
{
PreparedStatement sql=null;
ResultSet rs=null;
String exe="select * from tb_user where username=? password=?";

conn=getConnection();
sql=conn.prepareStatement(exe);
sql.setString(1,username);
sql.setString(2,password);
rs=sql.executeQuery();
while(rs.next())
{
return true;
}
return false;
}
}

这段代码每次运行都提示在sql=conn.prepareStatement(exe)这句代码有空指针,我单独测试了一下数据库连接,也没有问题,这是什么情况??
展开
 我来答
zlzljake
2013-10-08
知道答主
回答量:27
采纳率:0%
帮助的人:6.3万
展开全部
应该是你的sql语句有问题,你把sql.setString(1,username);
sql.setString(2,password)移到sql=conn.prepareStatement(exe);前面去试试
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
小狂中E
2013-10-08 · TA获得超过1418个赞
知道大有可为答主
回答量:1514
采纳率:66%
帮助的人:1012万
展开全部
在conn=getConnection();后加上
if(conn==null) {
throw new SQLException("conn is null");
}
追问
的确是getConnection()返回了空值的问题,这个该怎么解决?我单独在另一个类里测试getConnection的时候它却没有返回空值.........
追答
getConnection()应该会打印异常堆栈,你看看是哪里出错了
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
wuqing0826
2013-10-08 · TA获得超过692个赞
知道小有建树答主
回答量:753
采纳率:0%
帮助的人:722万
展开全部
conn为空引起的错误

public static Connection getConnection() 去掉static 修饰符
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式