com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; che

Posted 大佛拈花-GoSaint

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; che相关的知识,希望对你有一定的参考价值。

出现此种错误,我暂时遇到了两次。 
1 我的字段的名称和数据库的关键字重合。 

 

 

上图中的desc是默认降序排列的意思。 
2 第二次出现的异常是我在重构代码阶段遇到的一个bug.不过我暂时不能理解,虽然解决了错误。 
删除操作的代码如下:

 public void deleteProduct(Long id) {
        sql = "DELETE  FROM t_product WHERE id= ?";
        JDBCTemplate.templateDML(sql,id);
 }

或者如下的写法:都是正确的。

 public void deleteProduct(Long id) {
        sql = "DELETE  FROM t_product WHERE id="+id;
        JDBCTemplate.templateDML(sql);
    }

但是遇上查询一个结果的时候出现了问题:

public Product getProductById(Long id) {
        sql="SELECT * FROM  t_product  WHERE id=?";
        List<Product> list = JDBCTemplate.templateDQL(sql,id);
        return list.size()==1?list.get(0):null;
    }

修改之后又可以啦;

public Product getProductById(Long id) {
        sql="SELECT * FROM  t_product  WHERE id="+id;
        List<Product> list = JDBCTemplate.templateDQL(sql);
        return list.size()==1?list.get(0):null;
    }

 

以上是关于com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; che的主要内容,如果未能解决你的问题,请参考以下文章

com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException:重复条目 '' 键 'PRIMARY'

com.mysql.jdbc.exceptions.jdbc4.CommunicationsException:通信链路故障?

错误 com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException

com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException:表不存在

使用 JDBC 访问远程 MySQL 数据库时出现 com.mysql.jdbc.exceptions.jdbc4.CommunicationsException

com.mysql.jdbc.exceptions.jdbc4.CommunicationsException:通信链路故障