4萬行記錄 FDQuery查詢 Out of memorysql
sql server 能夠查詢成功server
First chance exception at $7505D722. Exception class EOutOfMemory with message 'Out of memory'. Process aa.exe (10212)it
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;io