GrommitAPW
Programmer
I am converting an Access system to have a SQL Server Backend. For performance reasons I want to convert queries to stored procedures & run them using pass through queries. In a pass through query I am using the syntax
EXEC sp_test (5)
which works fine. However I would like to pass a value from a field on a form, instead of hard-coding the parameter in the EXEC statement. Is this possible ?
Can anybody help ?
Thanks,
Adrian
EXEC sp_test (5)
which works fine. However I would like to pass a value from a field on a form, instead of hard-coding the parameter in the EXEC statement. Is this possible ?
Can anybody help ?
Thanks,
Adrian