我在VB6中有以下过程调用:
dim rs as adodb.command
dim cnn as adodb.connection
with rs
set .activeconnection = cnn
.CommandType = adCmdStoredProc
.CommandText = "sp_qryUpdate"
.CommandTimeout = 0
.Parameters("@uidbatch").value = lngBatchID
.Execute , , adExecuteNoRecords
end with
我收到的错误是,
对象变量或未设置块变量
设置.activeconnection
后抛出错误
你知道这意味着什么吗?我收到的连接字符串是正确的。