J
Joe Thompson
Hi,
I am using C# to write a windows app that uses a MS Access DB. I have a
query saved in Access (stored procedure) that has some parameters:
SELECT *
FROM Loans
WHERE (BranchName=[@bn] And DateFunded>=[@dfStart] And DateFunded<=[@dfStop]
And RepName IN ([@rns]));
My question is, how do I pass in a list of more than one name for @rns?
Something like ...RepName IN ('Eddie', 'Bill', 'Bob')...
Thank you,
Joe
I am using C# to write a windows app that uses a MS Access DB. I have a
query saved in Access (stored procedure) that has some parameters:
SELECT *
FROM Loans
WHERE (BranchName=[@bn] And DateFunded>=[@dfStart] And DateFunded<=[@dfStop]
And RepName IN ([@rns]));
My question is, how do I pass in a list of more than one name for @rns?
Something like ...RepName IN ('Eddie', 'Bill', 'Bob')...
Thank you,
Joe