View Single Post
  #2 (permalink)  
Old 07-31-2007, 05:53 PM
liorb liorb is offline
Member
 
Join Date: Jul 2007
Posts: 2
liorb is on a distinguished road
I found something that might explain my problem, the question now is, what alternatives can I use?

Some databases don't support the concept of prepared statements in on way or another. What happens in these cases is that the JDBC driver itself actually does the work of the PreparedStatement itself. This means that what happens is that the driver parses the statement, does the parameter binding for you and then when you execute it actually sends a regular old SQL statement (with the formatting it has done for you) to the database. As a popular example of a database that does this MySQL would be one.




About PreparedStatement's performance
Reply With Quote