Gets or sets a value indicating whether to re-sort
the result set within the application.
Namespace: CleanCode.SqlEditorControlsAssembly: CleanCode.SqlEditorControls (in CleanCode.SqlEditorControls.dll) Version: 1.2.3.0 (1.2.03)
public bool TurboSortMode { get; set; }
public bool TurboSortMode { get; set; }
Public Property TurboSortMode As Boolean
Get
Set
Public Property TurboSortMode As Boolean
Get
Set
public:
property bool TurboSortMode {
bool get ();
void set (bool value);
}
public:
property bool TurboSortMode {
bool get ();
void set (bool value);
}
Field Value
true if [turbo sort mode]; otherwise,
false.
The result set returned from the database will be sorted
according to whatever "order by" clause is attached to the query.
But different database systems (e.g. Oracle and SQL Server) sort differently,
specifically on case and on certain special characters.
For the occasion when you want to use this control in an application
that wants to compare result sets from disparate database systems,
enabling the TurboSort mode will re-sort result sets
within the application itself and thus, by definition,
sorting them consistently.
See the
MultiColumnSort API for more details.