Как сортировать TADOTable
Вот, в приципе, и весь вопрос. TADOTable Подключена к базе данных MSSQL, требуется сортировать ее по различным полям (например при клике на имени поля в заголовке DBGrid'а)
Цитата:
Originally posted by _kolyan
Вот, в приципе, и весь вопрос. TADOTable Подключена к базе данных MSSQL, требуется сортировать ее по различным полям (например при клике на имени поля в заголовке DBGrid'а)
Вот, в приципе, и весь вопрос. TADOTable Подключена к базе данных MSSQL, требуется сортировать ее по различным полям (например при клике на имени поля в заголовке DBGrid'а)
Прям напрямую из хелпа:
Цитата:
TCustomADODataSet::Sort
Specifies the sort order of the recordset.
__property WideString Sort = {read=GetSort, write=SetSort};
Description
Set Sort to establish or change the list of fields on which the recordset is sorted. Set sort to the name of a single field or to a comma-separated list of fields. Each field may optionally be followed by the keyword ASCENDING or DESCENDING to specify a sort direction for the field. If one of these keywords is not used, the default sort direction for the field is ascending. Set Sort to an empty string to reset the recordset to the sort order originally used when the recordset’s data was first retrieved.
ADOQuery1->Sort = "LastName ASC, DateDue DESC"
Read Sort to determine the field (or fields) on which the recordset is sorted.
Note: If the cursor is client-side (the dataset component’s CursorLocation property or that of an associated TADOConnection component is clUseClient) and no index already exists matching the requested field sort order, a temporary index is created. Resetting the sort order by setting Sort to an empty string automatically deletes the temporary index.