📄 ehlibbde.pas
字号:
{*******************************************************}
{ }
{ EhLib v2.5 }
{ Register object that sort data in TQuery }
{ }
{ Copyright (c) 2002 by Dmitry V. Bolshakov }
{ }
{*******************************************************}
{*******************************************************}
{ Add this unit to 'uses' clause of any unit of your }
{ project to allow TDBGridEh to sort data in }
{ TQuery automatically after sorting markers }
{ will be changed. }
{ TSQLDatasetFeaturesEh will try to find line in }
{ TQuery.SQL string that begin from 'ORDER BY' phrase }
{ and replace line by 'ORDER BY FieldNo1 [DESC],....' }
{ using SortMarkedColumns. }
{*******************************************************}
unit EhLibBDE;
{$I EhLib.Inc}
interface
uses
DbUtilsEh, DBTables;
implementation
uses Classes;
initialization
RegisterDatasetFeaturesEh(TSQLDatasetFeaturesEh, TQuery);
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -