MySQL 預編譯語句遇到MySQLSyntaxErrorException
使用預編譯語句執行SELECT 語句時,可能會遇到以下錯誤>
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: 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
<code class="java"> rs = stmt.executeQuery(selectSQL);</code>
<code class="java"> rs = stmt.executeQuery();</code>
以上是為什麼在 SELECT 查詢使用準備好的語句時會收到「MySQLSyntaxErrorException」?的詳細內容。更多資訊請關注PHP中文網其他相關文章!