Using Access Queries???

  • Thread starter Thread starter Darryn Ross
  • Start date Start date
D

Darryn Ross

Hi

How do i setup a connection that looks at a access query instead of a table?
is a query assigned a command.type = "StoredProcedure" when setting up the
OleDbCommand???

Regards

Darryn
 
Hi Darryn,

Try with command.CommandText = "<yourquery>"
command.CommandType = CommandType.StoredProcedure;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top