有关储存过程的调用,请教大家一个问题?
clkun 2003-05-09 09:39:47
Set cmd = Server.CreateObject("Adodb.Command")
Set Rs = Server.CreateObject("Adodb.Recordset")
cmd.ActiveConnection = Conn
cmd.CommandText = "List"
cmd.CommandType = &H0004
cmd.Parameters.Append cmd.CreateParameter("@GetType",200,1,20)
cmd.Parameters.Append cmd.CreateParameter("@ClassID",3,1)
上面的 cmd.CommandType = &H0004 中的&H0004 是什么意思?
("@GetType",200,1,20) 其中的200,1,20是代表字符,长度20位?
("@ClassID",3,1)是数字?
求相关代码与数字对应说明?
先谢了!