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
  • Properties specific to hbCell variables
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
The hbCell type is used to define the advanced characteristics of the content of a cell (item value) in an HBase table. You can define and change the characteristics of this content using different WLanguage properties.
This type of variable is used by:
  • function hbRead: the result of function hbRead is an array of hbCell.
  • variables of type hbWriting, to specify the values to be written.
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 des données à écrire
Ecriture is hbWriting
Ecriture.Row = "post1"
Cellule is hbCell 
Cellule.Column.Family = "post"
Cellule.Column.Qualifier = "titre"
Cellule.Value = "Ceci est mon message sur le blog."
Add(Ecriture.Cell, Cellule)
// Ecriture des données
hbWrite(Connexion, "blog", Ecriture)
Properties

Properties specific to hbCell variables

The following properties can be used to handle a cell content:
Property nameType usedEffect
ColumnhbColumn variableColumn associated with the cell.
TimestampDateTimeTimestamp of the value read.
ValueBufferContent of the cell.
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