Guest_imported
New member
- Jan 1, 1970
- 0
I have several steps to this question
1. If I want to create a stored procedure on MS Access 2000
would I use the Sql Pass-Through method ....?
2. If that is the case is does this look right to anyone that has done this before
CREATE PROCEDURE test (@FName char(50), @LName char(50))
AS
DECLARE
INSERT INTO customer (Last_Name, First_Name)
VALUES (@LName, @FName)
as it stands this code does not work and I am not quite sure why .....
Please help
thanks
$help
1. If I want to create a stored procedure on MS Access 2000
would I use the Sql Pass-Through method ....?
2. If that is the case is does this look right to anyone that has done this before
CREATE PROCEDURE test (@FName char(50), @LName char(50))
AS
DECLARE
INSERT INTO customer (Last_Name, First_Name)
VALUES (@LName, @FName)
as it stands this code does not work and I am not quite sure why .....
Please help
thanks
$help