Call SQL stored procedure

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm fairly new to the coding world of Access & SQL and was wondering if
someone could point me in the right direction to learn how to send and
received data while in Access to my SQL Server. I have several stored
procedures that contain the data I need to see in Access (ie: combo box in a
form, text box, etc...)

Thank you,
Tony
 
You can use a pass through query to run a SP and return values.
You should use the same syntax you are using to run the SP from the SQL
Server.

In the query properties, set the return values to true

Keep in mind that you can update the return data.
 
Thanks for your reply Ofer but you did not answer my question. I don't want
to know what I can use, I want to know a good reference guide so I can learn
how to do these things.

Thanks,
Tony
 
I thought I did, your reference should be SQL Server, and not Access.
Learn to run the SP from the SQL server, and then take this code and put it
in the pass through query.

Either ask the SQL discussion group for a good reference, or search for it,
but try and ignore Access first, when you succeed running SP in SQL, return
to access.
 

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