Delphi 将数据导入StringGrid里的函数

Delphi 将数据导入StringGrid里的函数,在Delphi11.3/12编译通过

两个参数:

AQuery:数据连接源

ASG: StringGrid名称

procedure GetDataToGrid(AQuery:TFDQuery; ASqls:String; ASG:TStringGrid;ALabel:TLabel);
var
  iRow,iCol       : Integer;
begin
  AQuery.Close;
  AQuery.SQL.Text := ASqls;
  AQuery.Open;

  ASG.Row := 1;
  ASG.RowCount := AQuery.RecordCount+1;
//显示数据记录
  if not AQuery.IsEmpty then
  begin
    for iRow := 1 to ASG.RowCount-1 do
    begin
      for iCol := 0 to Min(AQuery.FieldCount-1,ASG.ColCount-1) do
      begin
        ASG.Cells[iCol,iRow]    := AQuery.Fields[iCol].AsString;
      end;
      AQuery.Next;
//如果已达末尾,则退出
      if AQuery.Eof then
      begin
         break;
      end;
    end;
  end;
  ALabel.Caption := '记录数 '+inttostr(AQuery.RecordCount)+' 条';
  AQuery.Close;
end;

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值