ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / HFSQL / HFSQL Client/Server functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Returns information about a materialized view.
Example
// Describe the connection
MyConnection is Connection
 
Info("The data of the view was produced on " + ...
MyConnection.InfoView(MyView, hDateLastRefresh)
Syntax
<Result> = <Connection>.InfoView(<View> , <Requested information>)
<Result>: Character string
Requested information.
<Connection>: Connection variable
Name of the Connection variable that describes the connection to the HFSQL server that contains the materialized view.
<View>: Character string
Name of the materialized view found on the server and for which the information is requested.
<Requested information>: Integer constant
Requested information about the specified materialized view.
hDateLastRefresh<Result> will contain the date (in YYYYMMDD format) of the last successful refresh of the view.
hErrorLastRefresh<Result> will correspond to:
  • the error that occurred during the last refresh.
  • Empty string ("") if the last refresh was successful.
hRefreshInProgress<Result> will correspond to:
  • 1 if the view is currently refreshed,
  • 0 otherwise.
hSQLCode<Result> will contain the SQL code of the view content.
Component: wd290hf.dll
Minimum version required
  • Version 25
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/21/2023

Send a report | Local help