当前位置: 首页 > 面试题库 >

JDBC MySql绑定变量语法错误在where子句中

闾丘玺
2023-03-14
问题内容

我收到此错误:com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException:您的SQL语法有错误。检查与您的MySQL服务器版本相对应的手册,以获取在’?’附近使用的正确语法。在第1行

public static Person getDetails(int id) {
    Connection conn = null;
       PreparedStatement stmt = null;
       Person newPerson = new Person();
       try{
          //STEP 2: Register JDBC driver
          Class.forName("com.mysql.jdbc.Driver");

          //STEP 3: Open a connection
          System.out.println("Connecting to database...");
          conn = DriverManager.getConnection(DB_URL,USER,PASS);

          //STEP 4: Execute a query
          System.out.println("Creating statement...");
          String sql = "SELECT firstName, lastName, birthday FROM person WHERE id=?";
          System.out.println("SQL Statement:\n\t" + stmt);
          stmt = conn.prepareStatement(sql);
          System.out.println("Prepared Statement before bind variables set:\n\t" + stmt.toString());
          //Bind values into the parameters.
          System.out.println("ID " + id);
          stmt.setInt(1, id);  // This would set id
          System.out.println("Prepared Statement after bind variables set:\n\t" + stmt.toString());

          // Let us select all the records and display them.
          ResultSet rs = stmt.executeQuery(sql);

          //STEP 5: Extract data from result set
          while(rs.next()){
             //Retrieve by column name
             String firstName = rs.getString("firstName");
             String lastName = rs.getString("lastName");
             Date birthday = rs.getDate("birthday");

             newPerson.setBirthday(birthday);
             newPerson.setFirstName(firstName);
             newPerson.setLastName(lastName);
             newPerson.setId(id);

             //Display values
             System.out.print("ID: " + id);
             System.out.print(", First: " + firstName);
             System.out.println(", Last: " + lastName);
             System.out.println(", Birthday: " + birthday);
          }
          //STEP 6: Clean-up environment
          rs.close();
          stmt.close();
          conn.close();
       }catch(SQLException se){
          //Handle errors for JDBC
          se.printStackTrace();
       }catch(Exception e){
          //Handle errors for Class.forName
          e.printStackTrace();
       }finally{
          //finally block used to close resources
          try{
             if(stmt!=null)
                stmt.close();
          }catch(SQLException se2){
          }// nothing we can do
          try{
             if(conn!=null)
                conn.close();
          }catch(SQLException se){
             se.printStackTrace();
          }//end finally try
       }//end try
       System.out.println("Goodbye!");
       return newPerson;
}

我成功执行了不带where子句的查询。我看过许多示例,但我没有尝试解决此问题。


问题答案:

如果我理解您的问题,那么您就使用了问题Statement.executeQuery(String)。我可以肯定您打算使用PreparedStatement.executeQuery()

// Let us select all the records and display them.
ResultSet rs = stmt.executeQuery(sql);   // <-- adding sql here makes it use the
                                         //     Statement version.

你想用

// Let us select all the records and display them.
ResultSet rs = stmt.executeQuery();      // <-- use the version from PreparedStatement


 类似资料:
  • 我的SQL语句语法有问题,LogCat说问题就在哪里。我哪里错了? 下面是我的代码: 任何帮助或建议都将欣然接受,这是我的项目的最后一块拼图。当我做完这件事我就可以Rest了。提前道谢。

  • 问题内容: 我有以下查询: 这返回 我将如何使它工作?说参数是否为“有效”,则返回具有以下条件的记录? 问题答案: 您可以使用另一种方法:

  • 问题内容: 在WHERE子句中有使用SELECT语句描述的名称吗?这是好/不好的做法吗? 这会是更好的选择吗? 它远没有那么优雅,但是运行起来比以前的版本要快。我不喜欢它,因为它在GUI中没有非常清晰地显示(并且SQL初学者需要理解它)。我可以将其分为两个独立的查询,但是随后事情变得混乱了…… 注意:我不仅需要日期和分数(例如姓名) 问题答案: 称为相关子查询。它有它的用途。

  • 问题内容: 我的代码: 始终显示为1的计数,但是当我跳过参数化并仅将变量本身添加到其位置时,我得到了准确的计数。这里发生了什么? 问题答案: 您不能像这样为IN子句绑定参数。$ myArray字符串将仅计为一个值,例如执行以下操作: 即使有三个以逗号分隔的值,数据库也会将它们作为一个字符串值读取。 您需要以惯用的方式手动将IN列表插入查询中。 不幸的是没有其他办法。至少现在(是。

  • 例如,如果则添加一个where子句,但如果它为空,则不会在查询中使用该子句。 最好的情况是使用筛选表单来缩小记录列表:如果没有使用筛选器,则查询甚至不会使用WHERE,而所有筛选器都可能使用,从而产生一个大的WHERE查询。 正如我现在看到的,我需要为每种情况注册一个准备好的语句,但这将导致大量语句需要分别维护和测试。

  • 我需要实现一个方法来查询不同数量的条件。我不想每次都做一个新的准备好的语句,因为这就是为什么我首先使用准备好的语句。基本上我有三个条件。 现在我不知道如何用准备好的语句进行这样的查询。因为我没有办法设置。有什么建议可以实现这一点吗?