用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > asp教程

asp数据库编程:随机访问Recordset的一条记录

时间:2015-01-28  来源:互联网  作者:佚名
    假设这个数据表有一个唯一的ID字段,并至少有一条记录。随机存取其中一条记录的方法是非常简单的,可以分为四步:
1、取得记录总数n。
2、把所有的ID号存储到一个数组中
3、产生一个不大于n的随机数m
4、从数组中取出第m个ID号,查询数据表,取得记录数据。
  下面是部分代码:
$#@60;%
set conn = Server.CreateObject(‘ADODB.Connection‘)
conn.open ‘$#@60;conn string$#@62;‘

‘ ***** (step 1) *****

set rs = conn.execute(‘Select count(id) from someTable‘)
rCount = rs(0)

‘ ***** (step 2) *****

set rs = conn.execute(“select id from someTable”)
cnt = 1
dim RRs
redim RRs(rCount)
do while not rs.eof
RRs(cnt) = rs(0)
cnt = cnt + 1
rs.movenext
loop

‘ ***** (step 3) *****

randomize
currentRR = cLng(rnd*rCount+0.5)
ID = RRs(currentRR)

‘ ***** (step 4) *****

sql = “select otherfield from someTable where id=” & ID
set rs = conn.execute(sql)
response.write “ID # ” & ID & “ = ” & rs(0)
rs.close: set rs = nothing
conn.close: set conn = nothing
%$#@62;
  对于SQL Server,还有更加有效率的方法。比如设计两个存储过程。我这里只是阐明一些思路,并希望这种思路可以同时用在Access和SQL Server中。
来顶一下
返回首页
返回首页
推荐资讯
asp优化:改进 ASP 应用程序中的字符串处理性能 asp优化:改进 ASP 应用程序中的字符James MussonDeveloper Services, Microsoft UK 2003年3月 适
ASP基础教程:常用的 ASP ActiveX 组件 ASP基础教程:常用的 ASP ActiveX 组当你用 ASP 编写服务器端应用程序时,必须依靠 ActiveX 组件
相关文章
栏目更新
栏目热门