執行PreparedStatement時MySQL語法錯誤:「You Have an Error in Your SQL Syntax」
使用PreparedStatementment遇到“MySQLSyntaxErrorException 靠近“? ””錯誤。此錯誤表示 SQL 查詢中存在語法錯誤。
在此特定問題中,程式碼嘗試使用 '?`佔位符來取代查詢參數,但PreparedStatement 未正確取代這些佔位符。
問題在於executeQuery() 方法呼叫。程式碼透過呼叫 s.executeQuery(query) 而不是 s.executeQuery() 以原始查詢覆寫準備好的查詢。應使用無參數的executeQuery()方法來執行準備好的查詢。
PreparedStatement s = conn.prepareStatement(query); s.setInt(1, intValue); s.setString(2, strValue); rs = s.executeQuery(); // Correct
此外,由於未關閉的連接、語句和結果集,程式碼可能會洩漏資源。應在finally區塊中關閉資源以防止資源耗盡。
try { ... } finally { if (rs != null) rs.close(); if (s != null) s.close(); if (conn != null) conn.close(); }
以上是為什麼我在 Java 中使用PreparedStatement 時會收到「'?'附近的 MySQL 語法錯誤」?的詳細內容。更多資訊請關注PHP中文網其他相關文章!