本文介绍了如何使用VBScript将参数与ADO中的Command对象关联?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我一直在使用ADO VBScript,它需要接受参数并将那些参数合并到通过数据库传递的查询字符串中。当记录集对象尝试打开时,我一直收到错误消息。如果我传递不带参数的查询,则记录集将打开,并且可以处理数据。当我通过调试器运行脚本时,命令对象未显示参数对象的值。在我看来,我似乎缺少一些与Command对象和Parameter对象相关联的东西,但是我不知道是什么。下面是一些VBScript代码:I have been working an ADO VBScript that needs to accept parameters and incorporate those parameters in the Query string that gets passed the the database. I keep getting errors when the Record Set Object attempts to open. If I pass a query without parameters, the recordset opens and I can work with the data. When I run the script through a debugger, the command object does not show a value for the parameter object. It seems to me that I am missing something that associates the Command object and Parameter object, but I do not know what. Here is a bit of the VBScript Code: ...'Open Text file to collect SQL query string'Set fso = CreateObject("Scripting.FileSystemObject")fileName = "C:\SQLFUN\Limits_ADO.sql"Set tso = fso.OpenTextFile(fileName, FORREADING)SQL = tso.ReadAll'Create ADO instance' connString = "DRIVER={SQL Server};SERVER=myserver;UID=MyName;PWD=notapassword; Database=favoriteDB" Set connection = CreateObject("ADODB.Connection") Set cmd = CreateObject("ADODB.Command") connection.Open connString cmd.ActiveConnection = connection cmd.CommandText = SQL cmd.CommandType = adCmdText Set paramTotals = cmd.CreateParameter With paramTotals .value = "tot%" .Name = "Param1" End With 'The error occurs on the next line' Set recordset = cmd.Execute If recordset.EOF then WScript.Echo "No Data Returned" Else Do Until recordset.EOF WScript.Echo recordset.Fields.Item(0) ' & vbTab & recordset.Fields.Item(1) recordset.MoveNext Loop End If我使用的SQL字符串相当标准,只是我想向其传递参数。就像这样:The SQL string that I use is fairly standard except I want to pass a parameter to it. It is something like this:SELECT column1FROM table1WHERE column1 IS LIKE ?我知道ADO应该替换?我在脚本中分配的参数值。我看到的问题是Parameter对象显示正确的值,但是根据我的调试器,命令对象的parameter字段为null。 I understand that ADO should replace the "?" with the parameter value I assign in the script. The problem I am seeing is that the Parameter object shows the correct value, but the command object's parameter field is null according to my debugger. 推荐答案我知道这已经很老了,但是对于仍在满足这个要求的人(就像我通过google所做的那样):I know this is old, but for anyone still fiding this (like I did via google):如果您使用存储过程:set cmd = Server.CreateObject("ADODB.Command")with cmd .ActiveConnection = db_connection .CommandText = "stored_procedure_name" .CommandType = adCmdStoredProc .Parameters.Append .CreateParameter("@Parameter1",adInteger,adParamInput,,1) .Parameters.Append .CreateParameter("@Parameter2",adVarChar,adParamInput,100,"Up to 100 chars") .Parameters.Append .CreateParameter("@Parameter3",adBoolean,adParamInput,,true) .Parameters.Append .CreateParameter("@Parameter4",adDBTimeStamp,adParamInput,,now())end withset rs = cmd.execute 'do stuff with returned results from select or leave blank if insert/delete/etc stored procedureset rs = nothingset cmd = nothing如果没有,我相信您将.CommandText更改为带有问号的SQL语句,并且您的参数必须遵循相同的顺序。If not, I beleive you change the .CommandText to your SQL statement with questions marks in place and your Parameters must follow the same order.请参见 http://www.devguru.com/technologies/ado/quickref/command_createparameter.html 要详细了解您通过CreateParameter传递的值以及类型及其描述的列表。See http://www.devguru.com/technologies/ado/quickref/command_createparameter.htmlFor a breakdown of what values you're passing with CreateParameter, as well as a list of types and their descriptions. 这篇关于如何使用VBScript将参数与ADO中的Command对象关联?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
11-02 02:25