Home  >  Article  >  Database  >  【mysql案例】Java程序访问Mysql报错'OPTION SQL

【mysql案例】Java程序访问Mysql报错'OPTION SQL

WBOY
WBOYOriginal
2016-06-07 15:18:441041browse

【环境描述】 mysql版本: 5.6.14-56-log Percona Server (GPL) 程序: 使用JDBC驱动mysql-connector-java访问mysql数据库 【报错信息】 程序访问mysql执行SQL语句的时候报错: You have an error in your SQL syntax; check the manual that corresponds to

【环境描述】

mysql版本: 5.6.14-56-log Percona Server (GPL)

程序: 使用JDBC驱动mysql-connector-java访问mysql数据库


【报错信息】

程序访问mysql执行SQL语句的时候报错:

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 'OPTION SQL_SELECT_LIMIT=5' at line 1

【报错原因】
程序使用的JDBC驱动版本跟MySQL5.6版本不兼容

【解决方法】
升级mysql-connector-java驱动

测试set OPTION SQL_SELECT_LIMIT=5 不再报错。


总结:

使用新版本MySQL的时候,不仅数据库要进行测试,也要结合程序一起进行测试。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn