ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / Big Data / Managing HBase databases
  • Properties specific to the description of hbCell variables
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 hbCell type is used to define the advanced characteristics of the content of a cell (item value) in an HBase table. The characteristics of this content can be defined and changed using different WLanguage properties.
This type of variable is used by:
  • the hbRead function: the result of hbRead is an array of hbCell.
  • variables of type hbWriting, to specify the values to be written.
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 write
Writing is hbWriting
Writing.Row = "post1"
Cell is hbCell
Cell.Column.Family = "post"
Cell.Column.Qualifier = "title"
Cell.Value = "This is my blog post."
Add(Writing.Cell, Cell)
// Write data
hbWrite(Connection, "blog", Writing)
Remarks

Properties specific to the description of 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: 05/26/2022

Send a report | Local help