AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Administrar bases de datos / HFSQL / Funciones HFSQL
  • Example: Displaying the characteristics of an item in the trace
HListItem (Example)
Example: Displaying the characteristics of an item in the trace
WINDEVWEBDEV - Código ServidorReportes y ConsultasWindowsLinuxJavaCódigo de Usuario (UMC)AjaxHFSQL ClassicHFSQL Client/ServerHyper File 5.5OLE DBConectores Nativos This example is used to display all the characteristics of the item in a trace window. Each characteristic is extracted from the result of HListItem by ExtractString.
// Displays the characteristics of an item in the trace
sItemList is string
 
sItemList = HListItem(CUSTOMER, hLstDetail)
// Retrieves the first item
sItemList = ExtractString(sItemList, 1, CR)
// Displays the item name
Trace(ExtractString(sItemList, 1))
// Displays the item type
Trace(ExtractString(sItemList, 2))
// Displays the HFSQL type
Trace(ExtractString(sItemList, 3))
// Displays the size
Trace(ExtractString(sItemList, 4))
// Displays the number of elements
Trace(ExtractString(sItemList, 5))
// Displays the item caption
Trace(ExtractString(sItemList, 6))
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/05/2022

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