ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / Big Data / Managing HBase databases
  • Properties specific to hbScanResult variables
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
hbResultScan (Variable type)
In french: hbRésultatScan
The hbScanResult type is used to get the result of an iteration performed in an HBase table. The characteristics of this result are returned by several WLanguage properties.
Note: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
Example
// Connexion
Connexion is hbConnection
Connexion.Server = "MonServeur"
// Description du filtre
MonScan is hbScanParameter
MonScan.Connection = connection
MonScan.Table = "blog"
// Filtre pour toutes les lignes les valeurs des colonnes dont le nom commence par "Titre"
MonScan.Filter = "{ ""type"": ""ColumnPrefixFilter"", ""value"": """ + ...
	Encode("Titre", encodeBASE64) + """ }"
// Parcours selon le filtre et affichage des données filtrées
// La variable de parcours MonRésultat est de type hbRésultatScan
FOR EACH MonRésultat OF MonScan
	Trace("La colonne " + MonRésultat.Colonne.Famille + ":" + ...
		MonRésultat.Colonne.Qualificatif + ...
		" de la ligne " + MonRésultat.Ligne + " vaut " + MonRésultat.Valeur)
END
Properties

Properties specific to hbScanResult variables

The following properties can be used to handle the result of the iteration performed in an HBase table:
Property nameType usedEffect
ColumnhbColumn variableColumn (item) in an HBase table.
This property is read-only.
RowBufferIdentifier of the row (record).
This property is read-only.
TimestampDateTimeTimestamp of the cell.
This property is read-only.
ValueBufferValue of the cell (item).
This property is read-only.
Minimum version required
  • Version 21
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/19/2024

Send a report | Local help