xiuxiumomo 2016-03-17 03:13 采纳率: 50%
浏览 1271

jsp老是提示没有使用?的权限

<%

String driverName="com.mysql.jdbc.Driver";
String userName="root";
String userPassword="123";
String dbName="test";
String url1="jdbc:mysql://localhost:3306/"+dbName;
String url2="?user="+userName+"&password="+userPassword;
String url3="&useUnicodetrue&characterEncoding=utf-8";
String url=url1+url2+url3;
Class.forName(driverName);
Connection conn=DriverManager.getConnection(url);
request.setCharacterEncoding("utf-8");
String sql="delete from taozi.student where age>=?";
PreparedStatement pstmt=conn.prepareStatement(sql);
pstmt.setInt(1,21);
int n=pstmt.executeUpdate(sql);
if(n>=1){%>success!<%}
else{%>failes!<%}
if(pstmt!=null){pstmt.close();}
if(conn!=null){conn.close();}

%>

就是修改的时候一直显示 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '?' at line 1

  • 写回答

2条回答

  • ai2018 2016-03-17 04:59
    关注

    问题出在

    int n=pstmt.executeUpdate(sql);
    
    

    改成

    int n=pstmt.executeUpdate();
    
    

    就可以了,因为你使用了PreparedStatement ,而你在真正执行sql的时候,使用了占位符解析之前的sql。

    评论

报告相同问题?

悬赏问题

  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制
  • ¥20 usb设备兼容性问题
  • ¥15 错误(10048): “调用exui内部功能”库命令的参数“参数4”不能接受空数据。怎么解决啊
  • ¥15 安装svn网络有问题怎么办