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 用matlab 设计一个不动点迭代法求解非线性方程组的代码
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler
  • ¥15 oracle集群安装出bug
  • ¥15 关于#python#的问题:自动化测试
  • ¥20 问题请教!vue项目关于Nginx配置nonce安全策略的问题
  • ¥15 教务系统账号被盗号如何追溯设备
  • ¥20 delta降尺度方法,未来数据怎么降尺度
  • ¥15 c# 使用NPOI快速将datatable数据导入excel中指定sheet,要求快速高效