AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Administrar bases de datos / Gestión de archivos xBase / Funciones WLanguage
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
HDBSortType (Function)
Conectores NativosHFSQL ClassicDisponible solo con estos tipos de conexión
Returns or modifies the sequence of text items in the xBase files.
Ejemplo
nSortType is int
// Retrieves the sort order
nSortType = HDBSortType()

// Changes the type of sort
SWITCH nSortType
	CASE hDBASCII: Info("Sort ASCII")
	CASE hDBLexicographic
			  HDBSortType(hDBASCII)
			  Info( "Lexicographic sort changed to ASCII sort" )
	OTHER CASE
			  Info("Error: Unknown sort")
END
Sintaxis

Modifying the order sequence Ocultar los detalles

<Result> = HDBSortType(<Type of sort>)
<Result>: Constant
Type of sort order used before changing the order:
hDBASCIISort according to ASCII order.
hDBLexicographicLexicographic sort.
<Type of sort>: Constant
Type of sort to use:
hDBASCII
(Default value)
Sort according to ASCII order.
hDBLexicographicLexicographic sort.

Finding out the order sequence Ocultar los detalles

<Result> = HDBSortType()
<Result>: Constant
Type of order currently used:
hDBASCII
(Default value)
Sort according to ASCII order.
hDBLexicographicLexicographic sort.
Observaciones
This function is not available when using a stand-alone executable.
Componente: wd300hf.dll
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/03/2025

Señalar un error o enviar una sugerencia | Ayuda local