ASP访问带多个参数的存储过程
2009-05-12 15:14:21来源:未知 阅读 ()
1.ACCESS
查询(query_info):
select * from info where stu = name1 and age = age1
ASP代码:
以下为引用的内容: Dim conn,comm,rsSet conn = Server.CreateObject("ADODB.Connection") Set comm = Server.CreateObject("ADODB.Command") conn.open "Driver={Microsoft Access Driver (*.mdb)};Dbq=" & Server.MapPath("db1.mdb") comm.Parameters.Append comm.CreateParameter("name1",200,1,100,"张三") comm.Parameters.Append comm.CreateParameter("age1",200,1,100,"25") comm.ActiveConnection = conn comm.CommandType = 4 comm.CommandText = "query_info" Set rs = comm.Execute If not rs.eof Then Response.Write(rs(1)) End if Set rs = nothing Set comm = nothing conn.close Set conn = nothing |
2.SQL Server:
存储过程(query_info):
以下为引用的内容: @age1 int = 25 AS Select * from info where stu=@name1 and age = @age1 GO |
ASP代码:
以下为引用的内容: Set objConn = Server.CreateObject("ADODB.Connection")objConn.open "Driver={SQL Server};server=(local);uid=sa;pwd=txwl006;database=tempdb;" Set objComm = Server.CreateObject("adodb.command") objComm.Parameters.append objComm.CreateParameter("@name1",200,1,50,"李四") objComm.Parameters.append objComm.CreateParameter("@age1",200,1,50,32) objComm.CommandType = 4 objComm.ActiveConnection = objConn objComm.CommandText = "query_info" Set objRs = objComm.execute If not objRs.eof Then Response.write objRs(1) End if Set objRs = Nothing Set objComm = Nothing objConn.close Set objConn = nothing |
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- ASP调用存储过程的技巧 2020-03-20
- asp正则替换链接实现伪静态效果 2020-03-15
- asp执行带参数的sql语句实例 2020-03-15
- ASP IE地址栏参数的判断 2020-02-24
- JScript中遍历Request表单参数集合的方法 2019-12-31
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash