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 hbColumnDescription variables
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
hbColumnDescription (Variable type)
In french: hbDescriptionColonne
The hbColumnDescription type is used to define the advanced characteristics of a group of columns (items). You can define and change the characteristics of this group of columns using different WLanguage properties.
This type of variable is used by hbTableDescription variables.
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 de la table
DescTable is hbTableDescription
DescTable.Name = "blog"
// Description de la colonne "Post"
DescCol is hbColumnDescription
DescCol.Name = "Post"
Add(DescTable.Column, DescCol)
// Création de la table
hbCreateTable(Connexion, DescTable)
Properties

Properties specific to hbColumnDescription variables

The following properties can be used to handle a group of columns:
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. They are used to define the type of the column data for example.
For more details, see the HBase documentation.
NameCharacter stringName of the group of columns.
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