|
AnyDAC
|
Determines the order in which a component’s parameters are assigned to the parameter list for SQL command on the DBMS.
Get or set ParamBindMode to determine the order in which parameters in the Params property are matched to the parameters used by the SQL command on the server. ParamBindMode can be one of the following:
|
Value |
Ordering |
|
pbByName |
Parameters specified in the Params property are matched to identically named parameters on the server. This is the default. |
|
pbByNumber |
Whenever possible, ParamBindMode should be pbByName. This guarantees that parameters are matched to the correct parameters used by the SQL command regardless of physical ordering in Params. At design time, the names of known parameters appear in the Parameters editor.
property ParamBindMode: TADParamBindMode;
|
What do you think about this topic? Send feedback!
|