ADO problem
Database
2
Posts
2
Posters
3
Views
1
Watching
-
hi all, I got the following error while running the asp page that makes use of Stored Procedure .What might be the problem ???? Microsoft VBScript runtime error '800a01b6' Object doesn't support this property or method: 'CreateParameter(...).Append' thanks :rose:
-
hi all, I got the following error while running the asp page that makes use of Stored Procedure .What might be the problem ???? Microsoft VBScript runtime error '800a01b6' Object doesn't support this property or method: 'CreateParameter(...).Append' thanks :rose:
Could you give more details? When you use a command object, you usually need to do something like: set cm = server.createobject("ADODB.Command") cm.Parameters.Append cm.CreateParameter(...) HTH Wanderley