不带参数的存储过程:
Const adCmdStoredProc = 4
Const adInteger = 3Set Comm = Server.CreateObject("ADODB.Command")
Comm.ActiveConnectiong = "DSN=carlos;UID=sa;PWD=;Database=wages"
Comm.CommandText = "wgs_mtrx"
Comm.CommandType = adCmdStoredProcComm.Execute
Set Comm = nothing