Parameter Binding with INSERT Statements
When you use parameter binding, you use "?" (question marks) instead of actual values in an SQL statement. The "?" parameter must be used in place of a value for that column and not in arbitrary expressions.
The current parameter bindings are used whenever executeUpdate() is invoked for an INSERT statement. Parameter bindings can also be used with multi-row inserts.
Related tasks
Copyright © Cloud Software Group, Inc. All rights reserved.