ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / Managing databases / Big Data / Managing HBase databases
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Reads cells (values of items) of a row (record) in an HBase table.
Example
// Connexion
Connexion is hbConnection
Connexion.Serveur = "MonServeur"
// Description des données à lire
Lecture is hbReading
Lecture.Ligne = "post1"
Lecture.Version = 2
// Description colonne
Col is hbColumn
Col.Famille = "Post"
Add(Lecture.Colonne, Col)
// Lecture des données
MonRésultat is array of hbCell = hbRead(connection, "blog", Lecture)
// Affichage des données lues
FOR EACH Cellule OF MonRésultat DO
	Trace("Colonne : " + Cellule.Colonne.Qualificatif + "; Valeur : " + ...
	Cellule.Valeur + "; timestamp : " + Cellule.Timestamp)
END
Syntax
<Result> = hbRead(<Connection> , <Table> , <Reading>)
<Result>: Array of hbCell
Array of hbCell variables corresponding to the values of cells read.
<Connection>: hbConnection variable
Name of the hbConnection variable that corresponds to the connection to the HBase server.
<Table>: Character string
Name of the HBase table to use.
<Reading>: hbReading variable
Name of the hbReading variable containing the characteristics of the read operation to perform.
Component: wd300big.dll
Minimum version required
  • Version 21
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/12/2025

Send a report | Local help