28,409
社区成员




Set cmd = Server.CreateObject("ADODB.Command")
Set rs = Server.CreateObject("ADODB.Recordset")
With cmd
.ActiveConnection = cn
.CommandText = "prc_getWBcheckData"
.CommandType = adCmdStoredProc
.Prepared = True
.Parameters.Append .CreateParameter("@lot_no",adVarChar,adParamInput,255,lot_no)
.Parameters.Append .CreateParameter("@mach_no",adVarWChar,adParamInput,255,mach_no)
Set rs = .Execute
End With