·您的位置: 首页 » 资源教程 » 编程开发 » 数据库 » 在ACCESS中使用“存储过程”(二)

在ACCESS中使用“存储过程”(二)

类别: 数据库教程  评论数:0 总得分:0
使用存储过程

  然后我们可以在 ASP 程序中调用这些存储过程了。

  这里可以看到为什么我说 Access 中的查询就是它的存储过程――我们的 Command 对象的 CommandType 属性设置的是 4,即 Stored Proc!

  so...

  以下的代码很简单:


  代码:
   
<%
  Option Explicit



  Dim s
  Randomize
  s = Rnd * 100



  Dim conn, cmd
  Set conn = Server.CreateObject("ADODB.Connection")
  Set cmd = Server.CreateObject("ADODB.Command")



  conn.Open "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & Server.MapPath("sp.mdb")



  With cmd
  .ActiveConnection = conn
  .CommandType = &H0004 \'存储过程
  .CommandText = "AddNewData"
  End With



  cmd.Execute , Array(CStr(Now()), CSng(s))



  With cmd
  .ActiveConnection = conn
  .CommandType = &H0004 \'存储过程
  .CommandText = "GetData"
  End With



  Dim resultRS, resultArray
  Set resultRS = cmd.Execute(, Null)



  If Not resultRS.EOF Then
  resultArray = resultRS.GetRows()
End If



  Set resultRS = Nothing
  Set cmd = Nothing
  conn.Close
  Set conn = Nothing



  Response.Write "<ul>"
  Dim i
  For i = 0 To UBound(resultArray, 2)
  Response.Write "<li>" & resultArray(0, i)
  Response.Write " " & resultArray(1, i)
  Response.Write " " & resultArray(2, i)
  Response.Write "</li>"
  Next
  Response.Write "</ul>"
  %>
-= 资 源 教 程 =-
文 章 搜 索
关键词:
类型:
范围:
纯粹空间 softpure.com
Copyright © 2006-2008 暖阳制作 版权所有
QQ: 15242663 (拒绝闲聊)  Email: faisun@sina.com
 纯粹空间 - 韩国酷站|酷站欣赏|教程大全|资源下载|免费博客|美女壁纸|设计素材|技术论坛   Valid XHTML 1.0 Transitional
百度搜索 谷歌搜索 Alexa搜索 | 粤ICP备19116064号-1