Used to set named parameters to be passed into SQL statements.

Note the parameters must be defined in the same order as they appear in the SQL statement. The reason for this is that ADO parameters are not actually named but positional, so for compatibility use proper position.

For SQL Passthrough (wwSQL) this method has extra overhead - for ADO, this method is more efficient. It works both ways, but there's trade offs. For ADO, this will be native. For SQL Passthrough the ?pcVar syntax is native and this mechanism only translates into this scheme.