I'm attempting to create a very simple stored procedure with one parameter in MS-Access 2003.
CREATE PROC procTest(lname VARCHAR(50)) AS
SELECT * FROM T_Employees t WHERE t.LastName = lname;
I get the error:
Error: [Microsoft][ODBC Microsoft Access Driver]Syntax error or access violation
SQLState: 37000
ErrorCode: 55
I'm a real n00b at stored procedures so I'm not sure what the issue is here...