网站导航网学 原创论文 原创专题 网站设计 最新系统 原创论文 论文降重 发表论文 论文发表 UI设计定制 论文答辩PPT格式排版 期刊发表 论文专题
返回网学首页
网学原创论文
最新论文 推荐专题 热门论文 论文专题
当前位置: 网学 > 交易代码 > ASP精品代码 > 正文

ASP中如何执行存储过程?

论文降重修改服务、格式排版等 获取论文 论文降重及排版 论文发表 相关服务

  什么是存储过程?

  存储过程是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

设为首页 | 加入收藏 | 网学首页 | 原创论文 | 计算机原创
版权所有 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2020 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号 常年法律顾问:王律师