首页 > 其他 > 详细

FDQuery Out of memory

时间:2019-05-18 10:22:00      阅读:270      评论:0      收藏:0      [点我收藏+]

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;

FDQuery Out of memory

原文:https://www.cnblogs.com/cb168/p/10884614.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!