ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / Big Data / Managing HBase databases
  • Properties specific to hbColumn variables
  • WLanguage functions that use the hbColumn type
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
The hbColumn type is used to define the advanced characteristics of a column (item) in an HBase table. The characteristics of this column can be defined and modified using different WLanguage properties.
This type of variable is used by the hbReading, hbScanParameter and hbScanResult variables.
Remark: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
Example
// Connection
Connection is hbConnection
Connection.Server = "MyServer"
// Description of data to read
Reading is hbReading
Reading.Row = "post1"
Reading.Version = 2
// Column description
Col is hbColumn
Col.Family = "Post"
Add(Reading.Column, Col)
// Read data
MyResult is array of hbCells = hbRead(Connection, "blog", Reading)
// Display the data read
FOR EACH Cell OF MyResult DO
Trace("Column: " + Cell.Column.Qualifier + "; Value: " + ...
Cell.Value + "; timestamp: " + Cell.Timestamp)
END
Remarks

Properties specific to hbColumn variables

The following properties can be used to handle a column:
Property nameType usedEffect
FamilyBufferName of the group of columns.
QualifierBufferQualifier of the column.

WLanguage functions that use the hbColumn type

hbDeleteDeletes:
  • one or more cells from an HBase table for one or more columns.
  • a row from an HBase table.
Minimum version required
  • Version 21
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 01/26/2023

Send a report | Local help