首页 > 网站 > 建站经验 > 正文

ASP:随机访问Recordse_t的一条记录

2019-11-02 14:55:22
字体:
来源:转载
供稿:网友

   假设这个数据表有一个唯一的ID字段,并至少有一条记录。随机存取其中一条记录的方法是非常简单的,可以分为四步:

  1、取得记录总数n。

  2、把所有的ID号存储到一个数组中

  3、产生一个不大于n的随机数m

  4、从数组中取出第m个ID号,查询数据表,取得记录数据。

  下面是部分代码:

  [email protected];%

  set conn = Server.CreateObject(‘ADODB.Connection‘)

  conn.open ‘[email protected];conn [email protected];‘

  ‘ ***** (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 # ” &

双视影院[www.aikan.tv/special/shuangshiyingyuan/]
ID & “ = ” & rs(0)

  rs.close: set rs = nothing

  conn.close: set conn = nothing

  [email protected];

  对于SQL Server,还有更加有效率的方法。比如设计两个存储过程。我这里只是阐明一些思路,并希望这种思路可以同时用在Access和SQL Server中。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表