Data Access User Manual > Data Access and SQL > SQL Tables > Run-Time Options > Bound Variables Mode
 
Bound Variables Mode
Most database systems support the use of bound variables in SQL statements. When bound variables are used, the SQL statements contain variable markers. Here is an example:
UPDATE EMP
SET NAME = ?
WHERE ID = ?
The question marks represent variables. The value for a variable is provided separately. The advantage of using bound variables is that the same SQL statement can be reused even though the values involved change each time. Using the same SQL statement each time instead of having many SQL statements can offer a serious boost in performance. This is because the time spent in parsing an SQL statement and selecting an access plan on the database server can be significant.

Version 6.0
Copyright © 2015, Rogue Wave Software, Inc. All Rights Reserved.