AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Administrar bases de datos / Big Data / Gestión de bases de datos HBase
  • 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.
Versión mínima requerida
  • Versión 21
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 26/01/2023

Señalar un error o enviar una sugerencia | Ayuda local