Function Call from Access to Oracle

F

Fahim

Hi All,

How can I call an Oracle stored procedure or a function
from Access97?

Appreciate any feedback.
 
A

Albert D. Kallal

Put your code call right into a query..and make that query pass through.


exec sp_MyCoolStoredProc


Then save the query...as any name..perhaps lets say qryMyCoolProc

Now..to run..

currentdb.Execute "qryMyCoolProc"

I "think" the above should work...if not..then try:

currentdb.QueryDefs("qryMyCoolProc").Execute
 

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

Top