mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2026-03-13 09:24:25 +08:00
fix: disable paging with 50 rows on Interbase/Firebird
See https://www.heidisql.com/forum.php?t=44710
This commit is contained in:
@@ -4122,6 +4122,9 @@ begin
|
||||
SetLength(FLastRawResults, 0);
|
||||
FdQuery := TFDQuery.Create(Self);
|
||||
FdQuery.Connection := FFDHandle;
|
||||
// Disable paging with 50 rows
|
||||
FdQuery.FetchOptions.Mode := fmAll;
|
||||
FdQuery.FetchOptions.RecsMax := -1;
|
||||
// Todo: suppress mouse cursor updates
|
||||
try
|
||||
FdQuery.ResourceOptions.CmdExecTimeout := Parameters.QueryTimeout;
|
||||
|
||||
Reference in New Issue
Block a user