'OPTION SQL_SELECT_LIMIT=DEFAULT'

后端 未结 5 603
被撕碎了的回忆
被撕碎了的回忆 2021-01-01 12:12

I have a mysql database on Netbeans and I want to see that view data but I have a error 1064 \'OPTION SQL_SELECT_LIMIT=DEFAULT\'

5条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-01 12:26

    Some google foo lead me to this:

    http://bugs.mysql.com/bug.php?id=66659

    That bug report sound pretty much like your problem - there is no good fix for you. But there is a lead for some more reading.

    The similarity to you problem:

    1. It's also the jdbc driver involved
    2. The error message is the same
    3. the problem occurs on a very recent mysql server version

    So I tried to find the problem in the mysql-connector-java sources and found the statement in StatementImpl.java in version 5.1.18 - an older version can be found here:

    http://www.docjar.com/html/api/com/mysql/jdbc/StatementImpl.java.html

    Look for "SET OPTION SQL_SELECT_LIMIT=DEFAULT" in the file and you will find it.

    I also checked the most recent version

    I checked the source of mysql-connector-java 5.1.22 and the problem seems to be fixed:

    SET SQL_SELECT_LIMIT=DEFAULT
    

    So suggested fix for the user: Please download the newer version of connector/j and modify the driver entry in databases.

    Suggested fix: Update bundled connector/j version

提交回复
热议问题