4万行记录 FDQuery查询 Out of memory

sql server 可以查询成功

 

First chance exception at $7505D722. Exception class EOutOfMemory with message 'Out of memory'. Process aa.exe (10212)


function TFDDatSRow.AllocBuffer: PByte;
begin
  ASSERT(Table.Columns.StorageSize <> 0);
  GetMem(Result, Table.Columns.StorageSize);
  FillChar(Result^, Table.Columns.StorageSize, 0);
  // We does't need the following call, if to follow the rule - memory area
  // filled by the zero's is an empty value of any data type.
  // InternalInitComplexData(Result);
end;

相关文章:

  • 2021-12-04
  • 2021-06-30
  • 2021-10-30
  • 2021-04-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-09
  • 2021-05-16
  • 2021-07-23
  • 2021-08-22
  • 2021-06-17
  • 2021-05-27
  • 2021-08-02
相关资源
相似解决方案