M
Mervin Williams
The SQL for the SelectCommand of my data adapter is:
"Select contact_id, firstname, lastname from Contact where contact_id
in (<val1>, <val2>, ...)"
The goal here is to use an input parameter that is an array of values used
to populate the IN operator in the where clause; so that the values "val1",
"val2" will be automatically enumerated from the parameter array.
Does anyone know whether this is possible?
Mervin Williams
"Select contact_id, firstname, lastname from Contact where contact_id
in (<val1>, <val2>, ...)"
The goal here is to use an input parameter that is an array of values used
to populate the IN operator in the where clause; so that the values "val1",
"val2" will be automatically enumerated from the parameter array.
Does anyone know whether this is possible?
Mervin Williams