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 hbTableDescription variables
  • WLanguage functions that use the hbTableDescription type
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
The hbTableDescription type is used to define and find out the characteristics of an HBase table. You can define and change the characteristics of this HBase table using different 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"
// Récupération de la description de la table
DescTable is hbTableDescription = hbGetTableDescription(Connexion, "blog")
// Affichage du nom de la table
Trace("table : " + DescTable.Name)
// Affichage de la description des colonnes
FOR EACH DescCol OF DescTable.Column
	Trace(TAB + "colonne : " + DescCol.Nom)
	Trace(TAB + TAB + "attribut : ")
	FOR EACH ValAttribut, NomAttribut of DescCol.Attribut
		Trace(TAB + TAB + NomAttribut + " = " + ValAttribut)
	END
END
Properties

Properties specific to hbTableDescription variables

The following properties can be used to handle an HBase table:
Property nameType usedEffect
AttributeArray of Character stringsAssociative array containing the names of attributes and the values of each attribute. These names and values are specific to HBase and they are reserved for an advanced use.
For more details, see the HBase documentation.
ColumnArray of hbColumnDescriptionDescription of columns.
NameCharacter stringName of HBase table.
Remarks

WLanguage functions that use the hbTableDescription type

hbCreateTableCreates an HBase table or modifies the description of an HBase table.
hbGetTableDescriptionRetrieves the description of an HBase table.
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