I have a stored proc in SQL express:
ALTER PROCEDURE [dbo].[getValues]
@atty_no char(5)
AS
SELECT (attorney_no) FROM TBL1 WHERE attorney_no = @atty_no
I want to call that SP from MS Access and assign a value to the parameter. how would I go about that? Everything I have tried so far has failed...
Thanks
ALTER PROCEDURE [dbo].[getValues]
@atty_no char(5)
AS
SELECT (attorney_no) FROM TBL1 WHERE attorney_no = @atty_no
I want to call that SP from MS Access and assign a value to the parameter. how would I go about that? Everything I have tried so far has failed...
Thanks