ASP中如何执行存储过程?

2018-09-06 12:28

阅读:428

  

1. 什么是存储过程?

  

存储过程是SQL server所提供的Tranact-SQL语言所编写的程序。

  

2. 如何建立存储过程?

  

Create Procedure EmployeeID_Orders

  

@EmployeeID as int

  

as

  

select * from orders

  

where employeeID=@EmployeeID

  

3. ASP中执行存储过程:

  

A. 编写sql语句:“execute 存储过程名 参数”,再通过connection.execute或recordset.open执行

  

strSql=execute employeeID_Orders 1

  

Set objRstOrders=objCnnNorthwind.Execute(strSql)

  

B. 通command对象执行类型为acCmdStoredProc的命令

  

‘建立Command对象

  

  


评论


亲,登录后才可以留言!