ASP编程如何执行存储过程?

来源:CSDN 时间:2010-03-17 20:56:00 

 

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对象

Set objCmdNorthwind=Server.CreateObject("ADODB.Command")

‘设定命令的文本

objCmdNorthwind.CommandText="EmployeeID_Orders"

‘设定命令的类型

objCmdNorthwind.CommandType=adCmdStoredProc

‘设定命令对象使用的连接对象

Set objCmdNorthwind.ActiveConnection=objCnnNorthwind

 

‘建立参数对象

Set objParam=objCmdNorthwind.CreateParameter("@EmployeeID",adInteger,adParamInput)

‘把参数对象添加到命令对象的参数集中

objCmdNorthwind.Parameters.Append objParam

‘设定参数的值

objParam.Value=2

 

‘执行命令对象

Set objRstOrders=objCmdNorthwind.Execute()

‘销毁命令对象

Set objCmdNorthwind=Nothing


标签:存储过程,asp
0
投稿

猜你喜欢

  • 微信小程序实现图片上传功能实例(前端+PHP后端)

    2023-11-05 14:19:27
  • 详解python中的hashlib模块的使用

    2022-02-24 17:05:37
  • Go modules replace解决Go依赖引用问题

    2024-04-28 10:49:40
  • Python中的zipfile模块使用详解

    2023-02-26 22:44:37
  • 需要使用php模板的朋友必看的很多个顶级PHP模板引擎比较分析

    2023-11-19 02:10:43
  • 图文详解Python中如何简单地解决Microsoft Visual C++ 14.0报错

    2021-09-09 02:16:48
  • Pandas:DataFrame对象的基础操作方法

    2023-07-20 16:13:19
  • python免杀技术shellcode的加载与执行

    2021-10-27 16:25:06
  • setTimeout与setInterval的区别浅析

    2024-04-22 13:25:25
  • python中利用Future对象回调别的函数示例代码

    2021-09-28 13:03:43
  • 通过ASP.net实现flash对数据库的访问

    2024-01-14 17:04:30
  • Tkinter组件Entry的具体使用

    2023-03-21 00:41:40
  • Python 读写文件的操作代码

    2021-11-16 02:43:44
  • zen coding的dreamweaver插件安装教程

    2010-01-12 13:30:00
  • pytorch模型部署 pth转onnx的方法

    2022-07-05 03:49:04
  • numpy中的norm()函数求范数实例

    2022-01-02 01:36:45
  • windows10更换mysql8.0.17详细教程

    2024-01-26 19:56:19
  • 六个Python编程最受用的内置函数使用详解

    2022-06-12 22:26:01
  • php+mysql删除指定编号员工信息的方法

    2024-06-05 09:40:28
  • 实例讲解MySQL数据库中文问题的解决方法

    2008-12-31 15:15:00
  • asp之家 网络编程 m.aspxhome.com