您现在的位置:计算机技术学习网 > 技术中心 > WEB编程 > ASP >

ASP读取数据库中数据到数组的类

来源:互联网 责任编辑:栏目编辑 发表时间:2013-07-01 05:12 点击:
以下为引用的内容:
  DbPath = "test.mdb"’数据库位置
  ConnStr = "Provider = Microsoft.Jet.OLEDB.4.0;Data Source = " & Server.MapPath(DbPath)
  Set Conn = Server.CreateObject("ADODB.Connection")
  Conn.open ConnStr
  
  Class Class_Read
  Public Arr,Rs,SQL,ArrTR,ArrTD,Page,TotalRead,TotalPage
  Public Function Read(SQL,TD,TR,PG)
  SQL = Replace(SQL,"’","")
  Page= Int(PG)
  Set Rs = Server.CreateObject("ADODB.Recordset") : Rs.open SQL,conn,1,1
  TotalRead= Rs.RecordCount
  If TotalRead>0 Then
  If TR>0 Then : Rs.PageSize = TR : Else : TR=TotalRead
  If TD>Rs.Fields.Count or TD<1 Then TD = Rs.Fields.Count
  If TotalRead Mod TR <>0 Then TotalPage = 1 : End If : TotalPage = TotalPage + Int(TotalRead/TR)
  If Page>=TotalPage Then Page=TotalPage : TR = TotalRead-TR*(TotalPage-1)
  If Page>1 Then Rs.absolutePage=Page Else Page=1
  End If
  reDim Arr(TD-1,TR)
  For ArrTR = 0 to TR-1 : If Rs.Eof Then Exit For
  For ArrTD = 0 to TD-1 : Arr(ArrTD,ArrTR) = Rs(ArrTD) : Next : Rs.MoveNext
  Next
  ArrTR = ArrTR-1
  Rs.Close
  Set Rs=Nothing
  End Function
  End Class
  ’使用方法
  Dim C:Set C = New Class_Read
  C.Read ("SQL语句","读取列数","读取行数[既每页显示条数]","当前页数")
  Dim i
  For i=0 To C.ArrTR
  Response.Write "<br>内容:"&C.Arr(0,i)
  Next
  Response.Write "<br>总记录条数:"&C.TotalRead
  Response.Write "<br>总页数 :"&C.TotalPage
  Response.Write "<br>当前页 :"&C.Page
  Response.Write "<br>当前记录数:"&C.ArrTR+1
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
用户名: 验证码:点击我更换图片
最新评论 更多>>

推荐热点

  • WAP常见问题问答大全(四)
  • ASP开发必备:WEB打印代码大全
  • ASP调用系统ping命令
  • asp缓存技术
  • ASP教程:第三篇 ASP基础
  • 用ASP+XML打造留言本(4)
  • 关于ASP Recordset 分页出现负数解决方法及建议
  • 用asp怎样编写文档搜索页面(5)
  • ASP处理多关键词查询实例代码
网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
Copyright © 2008-2015 计算机技术学习交流网. 版权所有

豫ICP备11007008号-1