Dim stStoredProcCall As String
stStoredProcCall = "sp_SaveDefJobInfo " & 1234567 & " " & 1 & " " & "'09/18/06'" 'this is just metadata, but needs to be passed
DoCmd.OpenStoredProcedure stStoredProcCall
I tried something like this, but it gave me an error.
How do I pass parameters with a stored procedure call in Access to SQL Server 2005?
stStoredProcCall = "sp_SaveDefJobInfo " & 1234567 & " " & 1 & " " & "'09/18/06'" 'this is just metadata, but needs to be passed
DoCmd.OpenStoredProcedure stStoredProcCall
I tried something like this, but it gave me an error.
How do I pass parameters with a stored procedure call in Access to SQL Server 2005?