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 / HFSQL / Funciones HFSQL
  • Example 1: Advance to the 500th record in the "Product" data file according to the key Reference
  • Example 2: Advance to halfway through the "Customer" data file
HForward (Example)
Example 1: Advance to the 500th record in the "Product" data file according to the key Reference
WINDEVWEBDEV - Código ServidorReportes y ConsultasJavaCódigo de Usuario (UMC)AjaxHFSQL ClassicHFSQL Client/ServerHyper File 5.5OLE DBConectores Nativos The following example selects the 500th record in the "Product" data file.
HFirst(Product, Reference)
HForward(Product, Reference, 499)
Example 2: Advance to halfway through the "Customer" data file
WINDEVWEBDEV - Código ServidorReportes y ConsultasJavaCódigo de Usuario (UMC)AjaxHFSQL ClassicHFSQL Client/ServerHyper File 5.5OLE DBConectores Nativos This example scrolls halfway through the "Customer" data file. The total number of records is calculated by HNbRec.
// 50% positioning of the "Customer" data file on the "Name" key
TotalRec is int = HNbRec(Customer)
HFirst(Customer, Name)
HForward(Customer, Name, TotalRec/2)
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