用excuteUpdate向mysql数据库插入记录出错,求java大虾帮忙。下面的图是出错代码和出错提示。
<%Class.forName("com.mysql.jdbc.Driver");Connectioncon=DriverManager.getConnection(ur...
<%
Class.forName("com.mysql.jdbc.Driver");
Connection con=DriverManager.getConnection(uri,user,password);
Statement s=con.createStatement();
if(isLD==true)
{
ResultSet r=s.executeQuery("select*from student"+"where s_number="+s_number+"");
while(r.next()){
fsame=true;
}
}
if(!fsame){
s.excuteUpdate("INSERT INTO student VALUES("+s_number+",'"+s_name+"',"+age+",'"+major+"','"+sex+"')");
} //这一行的excuteUpdate报错
%>
错误提示:the method excuteUpdate(String) is undefined for the type Statement 展开
Class.forName("com.mysql.jdbc.Driver");
Connection con=DriverManager.getConnection(uri,user,password);
Statement s=con.createStatement();
if(isLD==true)
{
ResultSet r=s.executeQuery("select*from student"+"where s_number="+s_number+"");
while(r.next()){
fsame=true;
}
}
if(!fsame){
s.excuteUpdate("INSERT INTO student VALUES("+s_number+",'"+s_name+"',"+age+",'"+major+"','"+sex+"')");
} //这一行的excuteUpdate报错
%>
错误提示:the method excuteUpdate(String) is undefined for the type Statement 展开
5个回答
展开全部
excuteUpdate返回的是int类型,你把ResultSet r2改为int r2应该就对了
更多追问追答
追问
还是不行呀
追答
对了,添加不能这样写;
查询executeQuery(sql);
插入excuteUpdate();里边不能写Sql语句
你参考下下段代码:
String sql="insert into exam_user(id,username,userpwd) values(exam_user_id.nextVal,?,?)";
PreparedStatement ps=conn.prepareStatement(sql);
ps.setString(1, name);
ps.setString(2, pwd);
ps.executeUpdate();
展开全部
朋友,你改下吧,应该是s.executeUpdate();,是没有参数的
String sql="INSERT INTO student VALUES......................;
SQLQuery sq= s.createSQLQuery(sql);
sq.executeUpdate();
好运!!!!
String sql="INSERT INTO student VALUES......................;
SQLQuery sq= s.createSQLQuery(sql);
sq.executeUpdate();
好运!!!!
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
报错行下一行移到上面来,回车换行只能换+号,别把字符串回车换行,JAVA不认为是一行了
追问
不是这个,我是为了方便截图才换行的,主要是excuteUpdate报错
追答
看到报错信息没,Statement里面不包含这个方法。
可能是你Statement引入错了。或者参数错了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2012-10-22
展开全部
if(!fsame){
s.excuteUpdate("INSERT INTO student VALUES("+s_number+",'"+s_name+"',"+age+",'"+major+"','"+sex+"')");
} //这一行的excuteUpdate报错
%>
s.excuteUpdate写错了,应该是s.executeUpdate();
s.excuteUpdate("INSERT INTO student VALUES("+s_number+",'"+s_name+"',"+age+",'"+major+"','"+sex+"')");
} //这一行的excuteUpdate报错
%>
s.excuteUpdate写错了,应该是s.executeUpdate();
追问
我复制到补充里了
追答
s.excuteUpdate写错了,应该是s.executeUpdate();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
将单引号改为\“
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |