I have a the following stored procedure:
Alter Procedure GetResults @Get_Id INT
As
SELECT * FROM TBLSAMPLE
WHERE ID =@Get_Id
I am calling the stored procedure using the following:
DoCmd.OpenStoredProcedure "GetResults", acViewNormal
It is possible to call the stored procedure using...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.