AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Administrar bases de datos / HFSQL / Funciones HFSQL
  • Example: Running a view
  • Example: Running a view
HExecuteView (Example)
Example: Running a view
WINDEVCódigo de Usuario (UMC) This example is used to create a view and to run it later.
total is int = 0
IF HCreateView ("MyView", "REPORT", "", "FORMETYPE", hViewPostponed) = True THEN
// Process
HExecuteView(MyView)
HReadFirst(MyView)
WHILE NOT HOut()
total += RP.NBCALLS
HReadNext(MyView)
END
HDeleteView(MyView)
END
Example: Running a view
WINDEVCódigo de Usuario (UMC) This example is used to create a view and to run it later.
total is int = 0
IF HCreateView ("MyView", "REPORT", "", "FORMETYPE", hViewPostponed) = True THEN
// Process
HExecuteView(MyView)
HReadFirst(MyView)
WHILE NOT HOut()
total += RP.NBCALLS
HReadNext(MyView)
END
HDeleteView(MyView)
END
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: 30/05/2022

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