<insert id="insert" parameterType="Dto">
INSERT INTO table VALUES
(GeomFromText('POINT(#{latitude} #{longitude})'))
</insert>
我想執行上述查詢,但是它返回一些錯誤MyBatis的查詢不工作以及
原因:java.sql.SQLException中:參數索引超出範圍(12> 數量的參數,這是11)。
INSERT INTO filtered_user_location VALUES (GeomFromText('POINT(? ?)'))
我認爲錯誤是指準備語句(?)在一個單引號不起作用。
你有什麼好主意嗎?