JDBC spring 中的 Bad Sql Grammar 异常

问题描述 投票:0回答:4

我是越来越

org.springframework.jdbc.BadSqlGrammarException: 准备语句回调;错误的 SQL 语法 [选择 cid, 临床医生代码、密码、名字、姓氏来自临床医生,其中 临床医生代码=?];嵌套异常是 com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: 未知 “字段列表”中的“临床医生”列

以下代码错误,您还可以在屏幕截图中看到表格,除了 cid 所有其他属性都是 VARCHAR(45)

Clinician Table

行映射器类

public class CClinicianRowMapper implements RowMapper {

@Override
public Object mapRow(ResultSet rs, int line) throws SQLException {
    CClinicianResultSetExtractor extractor = new CClinicianResultSetExtractor();
    return extractor.extractData(rs);
}

}

结果提取类 公共类 CClinicianResultSetExtractor 实现 ResultSetExtractor {

  @Override
  public Object extractData(ResultSet rs) throws SQLException {
    CClinician clinician = new CClinician();
    clinician.setCid(rs.getLong("cid"));
    clinician.setClinicianCode(rs.getString("clinician-code"));
    clinician.setPassword(rs.getString("password"));
    clinician.setFirstName(rs.getString("first-name"));
    return clinician;
  }

}

从表中选择数据的类

public List<CClinician> findClinician(CClinician _clinician) {
    // TODO Auto-generated method stub
    JdbcTemplate select = new JdbcTemplate(dataSource);
    try
    {
    return select.query("select cid, clinician-code, password, first-name, last-name from Clinician where clinician-code= ?",
            new Object[] {_clinician.getClinicianCode()}, new CClinicianRowMapper());

    }
    catch (Exception e)
    {
        e.printStackTrace();
    }
    return null;
}
java mysql spring jdbc
4个回答
18
投票

我知道这是一个旧线程,但希望任何遇到这个问题的人都会发现这个答案有用。

我在我的 spring 应用程序中遇到了同样的异常。根据输出,我认为我的查询存在语法问题。事实证明,我的映射器方法实际上存在语法错误。我遇到这个问题是因为我最初创建的产品类的字段名称与列名称不同。

public class ProductMapper implements RowMapper<Product> {
public Product mapRow(ResultSet rs, int rowNum) throws SQLException {
  Product product = new Product();
  product.setProduct_id(rs.getInt("product_id"));  //was id.  was causing BadSqlGrammarException
  product.setProduct_name(rs.getString("product_name")); //was name.  was causing BadSqlGrammarException
  product.setPrice(rs.getDouble("price"));
  product.setQuantity(rs.getInt("quantity"));
  return product;
   }
}

进行上述更改后(我的字段命名为 product_id 和 product_name),我的应用程序正常运行。请记住,您对列名或 java 字段所做的任何更改不仅应该对您的查询语句进行,而且还应该对您的映射器方法进行。我看到 OP 正确地做到了这一点,但我认为值得重申。我希望有人觉得这有帮助。


8
投票

为了在列名中使用破折号,您需要用反引号将它们转义。

"SELECT cid, `clinician-code`, password, `first-name`, `last-name` 
     FROM Clinician 
     WHERE `clinician-code` = ?"

0
投票

正确检查您的查询语法是否丢失;或额外的逗号 (,) 。 “Bad SQL Grammar Exception”仅与 Sql 查询中的语法错误有关。
在使用 Spring JDBC 时,我在以下代码中遇到了同样的错误:

String query= "update student set name=?, city=?, where id=?"; // due to extra comma after city=?,

将代码更改为

String query= "update student set name=? city=?, where id=?"; 

错误已解决。


0
投票

我变了 String query = "update student set name=?, city=?, where id=?";

进入

String query = "update student set name=?, city=? where id=?"; 它解决了 我在名字后面用了逗号

© www.soinside.com 2019 - 2024. All rights reserved.