ASP下存储过程编写入门全接触第1/5页(2)



在以上代码中,CommandType属性表明请求的类型,取值及说明如下: 
-1 表明CommandText参数的类型无法确定 
1 表明CommandText是一般的命令类型 
2 表明CommandText参数是一个存在的表名称 
4 表明CommandText参数是一个存储过程的名称 
还可以通过Connection对象或Recordset对象调用存储过程,方法分别如下: 
复制代码 代码如下:

'**通过Connection对象调用存储过程**  
DIM MyConn,MyRst  
Set MyConn = Server.CreateObject("ADODB.Connection")  
MyConn.open MyConStr 'MyConStr是数据库连接字串  
Set MyRst = MyConn.Execute("getUserList",0,4) '最后一个参断含义同CommandType  
Set MyConn = Nothing  


复制代码 代码如下:

'**通过Recordset对象调用存储过程**  
DIM MyRst  
Set MyRst = Server.CreateObject("ADODB.Recordset")  
MyRst.open "getUserList",MyConStr,0,1,4  
'MyConStr是数据库连接字串,最后一个参断含义与CommandType相同 

12345下一页阅读全文

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/2607.html