cyberbiker
Programmer
I am just learning about and experimentung with stored procedures.
I keep receiving an "Invalid Object name 'Glass_Cutters'" error when I try to execute the stored procedure. The one stored procedure is simple:
CREATE PROCEDURE [sqCutterOpen] AS
Select * from [Glass_cutters]
The table is named Glass_cutters and I have even kept the case the same.
The select statement worked fine when I used it from vb so I do not think I have a permission or ownership issue although I really do not see what else it could be.
I have several other stored procedures that are identical )except for the table name) that give the same error.
I use the following to call the stored procedure where rs has been declared as a new ADODB.recordset
Set rs = connection.Execute("sqCutterOpen", , adCmdStoredProc).
It appears obvious that I am accessing the stored procedure or 'Glass_cutters' would not be returned.
Any ideas?
Thanks Terry (cyberbiker)
I keep receiving an "Invalid Object name 'Glass_Cutters'" error when I try to execute the stored procedure. The one stored procedure is simple:
CREATE PROCEDURE [sqCutterOpen] AS
Select * from [Glass_cutters]
The table is named Glass_cutters and I have even kept the case the same.
The select statement worked fine when I used it from vb so I do not think I have a permission or ownership issue although I really do not see what else it could be.
I have several other stored procedures that are identical )except for the table name) that give the same error.
I use the following to call the stored procedure where rs has been declared as a new ADODB.recordset
Set rs = connection.Execute("sqCutterOpen", , adCmdStoredProc).
It appears obvious that I am accessing the stored procedure or 'Glass_cutters' would not be returned.
Any ideas?
Thanks Terry (cyberbiker)