快速业务通道

《高性能的数据库》 第四讲 编程细节(1)

作者 佚名技术 来源 数据库编程 浏览 发布时间 2012-03-20
。可你却不能不用他。
  什么叫游标呢?说白了就是像高级语言一样,是存放数据集,并逐条访问的一种机制。
  比如在Delphi里面,要实现类似于这样的功能:(呵呵,不好意思,我只会Delphi,所以只能举一个Delphi的例子)
 
  //这是一段Delphi的源代码
  adoDataSet1.Close;
  adoDataSet1.CommandText:='' Select * From Student order by StudentID '';
  adoDataSet1.Open;
  While Not adoDAtaSet1.Eof Do
  Begin
  
   YourVar:=adoDAtaSet1.FieldByName(''StudentID'').AsInteger;
   DoSomeThing();
   .... 
   adoDataSet1.Next;
  End
  
  在SQL Server 并没有很好的数据逐条访问机制,如果有,那就是游标。

  还是举例子:

  对于表

   Create Table BorrowRecord(       --学生借书记录表
    BorrowRecord int identity(1,1),   --流水号 
    StudentID   int ,          --学号
    StudentFeeID int ,          --费用结算号  (外键)
    BorrowDate  datetime,        --借出时间
    ReturnDAte  Datetime,        --归还时间
    Fee      Money          --借书费用
    ...
   )

   Create Table StudentFee(        --学生费用结算表
    StudentFeeID int primarykey ,    --费用结算号  (主键)
    StudentID int ,            --学号
    BorrowBookAllFee      Money,   --所有借书总费用 
    ...
   )

   两者关系为多对一的关系,关联字段为StudentFeeID

   由于某种原因StudentFee表的数据遭到了破坏,我想StudentFee循环一遍将“所有借书总费用”重算 。

  -----------------------------------------------------------------------
  -------------------------------------------------------
  --Name:一部分代码
  --func:更新学生借书总费用
  --Use :
  --User:
  --Author: 懒虫 # SapphireStudio (www.chair3.com)
  --Date : 2003-4-16
  --Memo : 临时写写的,给大家作个Sample。没有调试阿。
  -------------------------------------------------------

   --声明一个游标
   Declare curStudentFee Cursor
    for
    Select StudentFeeID From StudentFee   

   --声明两个费用变量
   Declare @mBorrowBookAllFee Money --总费用
   Declare @iStudentFeeID   Int  --借书结算号

   --初始化 
   Set @mBorrowBookAllFee=0
   Set @iStudentFeeID=0

   --打开游标
   Open curStudentFee 

   --循环并提取记录
   Fetch Next From curStudentFee Into @iStudentFeeID  
   While ( @@Fetch_Status=0 )  
   begin

    --从借书记录中计算某一学生的借书总记录的总费用
    Select @mBorrowBookAllFee=Sum(BorrowBookAllFee)
     From BorrowRecord
     Where StudentFeeID=@iStudentFeeID  

    --更新到汇总表。
    Update StudentFee Set BorrowBookAllFee=@mBorrowBookAllFee
     Where StudentFeeID=@iStudnetFeeID     

    Fetch Next From curStudentFee Into @mFee
   end

   --关闭游标  
   Close curStudentFee

   --释放游标
   Deallocate curStudentFee

  -----------------------------------------------------------------------
  关注游标的要点:1、声明、打开、关闭、释放 ; 2、@@Fetch_Status 游标提取状态标志,0表示正确

  这里,我也要提到,我不鼓励使用游标。更多的情况下,

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号