mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-16 11:42:12 +08:00
Fix offset portion in LIMIT clause, at least for MySQL.
This commit is contained in:
@ -4039,7 +4039,7 @@ begin
|
||||
Offset := DataGridResult.RecordCount
|
||||
else
|
||||
Offset := 0;
|
||||
Select := DBObj.Connection.ApplyLimitClause('SELECT', Select, DatagridWantedRowCount-Offset);
|
||||
Select := DBObj.Connection.ApplyLimitClause('SELECT', Select, DatagridWantedRowCount-Offset, Offset);
|
||||
|
||||
try
|
||||
ShowStatusMsg('Fetching rows ...');
|
||||
|
Reference in New Issue
Block a user