Is there a way to execute a query(containing built in DB function) using PreparedStatement?
Example: insert into foo (location) values (pointfromtext('12.56666 13.67777',4130)) Here pointfromtext is a built in function.
|
|
|
By what I've seen, the first parameter on pointfromtext function is a string, and the second a number. So, try the following:
|
|||||
|
|
Sure, that should work. If not, what is your database system, and can you run the exact same command from the SQL command line? |
|||
|
|
|
The question marks are not being evaluated correctly because they are between simple quotes. Remove them, and it should work, |
|||
|
|
|
The scope of a PreparedStatement object is exactly to execute queries. If the query contains built in DB function is ok, and everything should work if the same query works outside the PreparedStatement. As Thilo said, test your query form SQL command line, or with the SQL graphical tool that you usually use. |
|||
|
|
|
Did you put connection.commit() after this code? The code should be:
|
|||
|
|
|
Did you try to don't set doubles in the preparaedStatement? Just for testing, you should try to insert this parameters directly in the String, something like:
and then try to execute the update. |
|||
|
|
|
Perhaps you've found a problem with the Postgresql JDBC driver, rather than with JDBC per se. In general what you want to achieve works with JDBC. |
|||
|
|