ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / Big Data / Managing HBase databases
  • Properties specific to hbWriting variables
  • WLanguage functions that use the hbWriting 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
hbWriting (Type of variable)
In french: hbEcriture
The hbWriting type is used to define the characteristics of a write operation that will be performed in a row (record) of an HBase table. The characteristics of this write operation can be defined and changed using different WLanguage properties.
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 hbWriting variables

The following properties can be used to describe the write operation to perform:
Property nameType usedEffect
CellArray of hbCellDescription of data to write.
RowBufferIdentifier of the row.

WLanguage functions that use the hbWriting type

hbWriteWrites cells (values of items) to one or more rows (records) in 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