作者:mobiledu2502883317 | 来源:互联网 | 2023-01-02 16:25
Ihavecreatedastoredprocedure.ItesteditinthequeryanalyserlikethisEXECtest10122012
I have created a stored procedure. I tested it in the query analyser like this EXEC test '10/12/2012'. It is OK. But I called it following way in the vb script. It not OK.
我创建了一个存储过程。我在查询分析器中测试了它,就像这个EXEC测试'10 / 12/2012'。没关系。但我在vb脚本中按照以下方式调用它。不行。
InstanceVar = CreateObject("ADODB.Recordset")
InstanceVar.ActiveCOnnection= ConnVar
InstanceVar.Source = "EXEC Test '" & Date() & "'"
InstanceVar.CursorType = 3
InstanceVar.CursorLocation = 3
InstanceVar.Open()
I have got 80040E14 error. How can I solve it
我有80040E14错误。我该怎么解决呢
1 个解决方案