S
Steve Barnett
I'm trying to do things properly and use OleDbCommand objects and parameters
to build me SQL queries. In the past, I've always built them as strings...
I'm now stuck. I have an SQL statement of the form:
Select <field names> FROM <table name> WHERE field_1 IN ( values list )
How do I specify the "values list" as a parameter to a Command object? I've
use Parameters to specify individual values, but never a list of values like
this.
Thanks
Steve
to build me SQL queries. In the past, I've always built them as strings...
I'm now stuck. I have an SQL statement of the form:
Select <field names> FROM <table name> WHERE field_1 IN ( values list )
How do I specify the "values list" as a parameter to a Command object? I've
use Parameters to specify individual values, but never a list of values like
this.
Thanks
Steve