zoukankan      html  css  js  c++  java
  • FireDac 的RecordCount 相关测试 记录。

    unit Unit4;
    
    interface
    
    uses
      Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
      Vcl.Controls, Vcl.Forms, Vcl.Dialogs, DBGridEhGrouping, ToolCtrlsEh,
      DBGridEhToolCtrls, DynVarsEh, Vcl.StdCtrls, EhLibVCL, GridsEh, DBAxisGridsEh,
      DBGridEh, FireDAC.Stan.Intf, FireDAC.Stan.Option, FireDAC.Stan.Error,
      FireDAC.UI.Intf, FireDAC.Phys.Intf, FireDAC.Stan.Def, FireDAC.Stan.Pool,
      FireDAC.Stan.Async, FireDAC.Phys, FireDAC.VCLUI.Wait, Data.DB,
      FireDAC.Comp.Client, FireDAC.Stan.Param, FireDAC.DatS, FireDAC.DApt.Intf,
      FireDAC.DApt, FireDAC.Phys.MSSQLDef, FireDAC.Phys.ODBCBase,
      FireDAC.Phys.MSSQL, FireDAC.Comp.UI, FireDAC.Comp.DataSet;
    
    type
      TForm4 = class(TForm)
        DBGridEh1: TDBGridEh;
        Button1: TButton;
        Button2: TButton;
        Button3: TButton;
        Button4: TButton;
        FDConnection1: TFDConnection;
        FDGUIxWaitCursor1: TFDGUIxWaitCursor;
        FDPhysMSSQLDriverLink1: TFDPhysMSSQLDriverLink;
        DataSource1: TDataSource;
        FDQuery1: TFDQuery;
        Button5: TButton;
        Label4: TLabel;
        Label5: TLabel;
        Label6: TLabel;
        Button6: TButton;
        Label2: TLabel;
        Label1: TLabel;
        Label3: TLabel;
        procedure Button1Click(Sender: TObject);
        procedure Button2Click(Sender: TObject);
        procedure Button3Click(Sender: TObject);
        procedure Button4Click(Sender: TObject);
        procedure Button5Click(Sender: TObject);
        procedure Button6Click(Sender: TObject);
      private
        { Private declarations }
      public
        { Public declarations }
      end;
    
    var
      Form4: TForm4;
    
    implementation
    
    {$R *.dfm}
    
    procedure TForm4.Button1Click(Sender: TObject);
    var
      start: Cardinal;
    begin
      start := GetTickCount;
      FDQuery1.Close;
      FDQuery1.FetchOptions.Mode := fmOnDemand;
      FDQuery1.FetchOptions.RecordCountMode := cmVisible;
      FDQuery1.Open('SELECT * FROM top_trade');
      Label1.Caption := Format('总数:%d,耗时:%d',[FDQuery1.RecordCount, GetTickCount - start]);
    end;
    
    procedure TForm4.Button2Click(Sender: TObject);
    var
      start: Cardinal;
    begin
      start := GetTickCount;
      FDQuery1.Close;
      FDQuery1.FetchOptions.Mode := fmAll;
      FDQuery1.FetchOptions.RecordCountMode := cmVisible;
      FDQuery1.Open('SELECT * FROM top_trade');
      Label3.Caption := Format('总数:%d,耗时:%d',[FDQuery1.RecordCount, GetTickCount - start]);
    end;
    
    /// <summary>
    /// 方法1,重新根据官方的Mode参数设置,获取全部数据,重新查一次
    /// </summary>
    procedure TForm4.Button3Click(Sender: TObject);
    var
      start: Cardinal;
    begin
      start := GetTickCount;
      with TFDQuery.Create(nil) do
      begin
        Connection := FDConnection1;
        FetchOptions.Mode := fmAll;
        Open(FDQuery1.SQL.Text);
        Label4.Caption := Format('总数:%d,耗时:%d',[RecordCount, GetTickCount - start]);
        Free;
      end;
    end;
    
    /// <summary>
    /// 方法2,依然是重新查一次,但是不获取全部数据,保持官方的默认参数,
    /// 开启数据集单向 然后 调用last方法 跳到最后 然后取RecordNo
    /// </summary>
    procedure TForm4.Button4Click(Sender: TObject);
    var
      start: Cardinal;
    begin
      start := GetTickCount;
      with TFDQuery.Create(nil) do
      begin
        Connection := FDConnection1;
        FetchOptions.CursorKind := ckForwardOnly;{开启单向}
        Open(FDQuery1.SQL.Text);
        Last;
        Label5.Caption := Format('总数:%d,耗时:%d',[RecNo, GetTickCount - start]);
        Free;
      end;
    end;
    
    /// <summary>
    /// 方法3,测试 RecordCountMode
    /// 经过测试这个 依然是查的全部 与 FetchOptions.Mode := fmAll 一样,但如果仅仅获取总数要快很多。
    /// </summary>
    procedure TForm4.Button5Click(Sender: TObject);
    var
      start: Cardinal;
    begin
      start := GetTickCount;
      with TFDQuery.Create(nil) do
      begin
        Connection := FDConnection1;
        FetchOptions.RecordCountMode := cmTotal;
        Open(FDQuery1.SQL.Text);
        Label6.Caption := Format('总数:%d,耗时:%d',[RecordCount, GetTickCount - start]);
        Free;
      end;
    end;
    
    procedure TForm4.Button6Click(Sender: TObject);
    var
      start: Cardinal;
    begin
      start := GetTickCount;
      FDQuery1.Close;
      FDQuery1.FetchOptions.Mode := fmOnDemand;
      FDQuery1.FetchOptions.RecordCountMode := cmTotal;
      FDQuery1.Open('SELECT * FROM top_trade');
      Label2.Caption := Format('总数:%d,耗时:%d',[FDQuery1.RecordCount, GetTickCount - start]);
    end;
    
    end.

    DEMO 下载链接: http://files.cnblogs.com/files/del88/FireDac-DEMO.zip 

    事实证明,即保证速度 又保证 recordCount是总数的情况下,通过 FDQuery1.FetchOptions.RecordCountMode := cmTotal; 这行代码是最 快的 

    要想保证RecordCount是总数的情况下,且加载全部数据的情况下,测试结果:

    FetchOptions.Mode := fmAll; ---- 耗时5秒

    RecordCountMode := cmTotal; ----- 耗时2秒。

    这两句都能显示全部数据。

  • 相关阅读:
    电脑无法删除文件提示源路径太长怎么办|电脑由于文件名太长无法删除的解决方法
    史上最清晰的红黑树讲解(上)
    深入理解Java PriorityQueue
    为什么你的博客不够火?
    Java ArrayDeque源码剖析
    Java LinkedList源码剖析
    Java HashSet和HashMap源码剖析
    Java ArrayList源码剖析
    Java Collections Framework概览
    顺序对齐
  • 原文地址:https://www.cnblogs.com/del88/p/6203588.html
Copyright © 2011-2022 走看看