Hi,
Since we upgraded our staging server from Connector/J 3.0.14+ to
Connector/J 3.1.16 ( on mysql 4.1.17) we receive for any SQL
PreparedStatements ending in "LIMIT ?,?" a java.sql.SQLException:
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 '?,?' at
line 1
Example:
private static final String PRODUCT_BY_RANGE_LIMIT = "SELECT * FROM
Product LIMIT ?,?";
~~~~cut~~~~~~
prepStmt.setInt(1, index);
prepStmt.setInt(1, range);
~~~~cut~~~~~~
Anybody else came across this problem?
Thanks,
Axel