Each time a statement is sent to a database, the database server must perform the following steps:
If you find yourself using the same statement repeatedly, for example inserting many rows into a table, repeatedly preparing the statement causes a significant and unnecessary overhead. To remove this overhead, some database programming interfaces provide ways of using prepared statements. A prepared statement is a statement containing a series of placeholders. When you want to execute the statement, all you have to do is assign values to the placeholders, rather than prepare the entire statement over again.
Using prepared statements is particularly useful when carrying out many similar actions, such as inserting many rows.
Generally, using prepared statements requires the following steps:
In this step you generally provide the statement with some placeholder character instead of the values.
In this step you supply values to be used each time the statement is executed. The statement does not have to be prepared each time.
In this step you free the resources associated with the prepared statement. Some programming interfaces handle this step automatically.
In general, you should not prepare statements if they are only executed once. There is a slight performance penalty for separate preparation and execution, and it introduces unnecessary complexity into your application.
In some interfaces, however, you do need to prepare a statement to associate it with a cursor.
For information about cursors, see Introduction to cursors.
The calls for preparing and executing statements are not a part of SQL, and they differ from interface to interface. Each of the SQL Anywhere programming interfaces provides a method for using prepared statements.
How to use prepared statements
Send feedback about this page via email or DocCommentXchange | Copyright © 2008, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.0 |