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
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
hbWriting (Variable type)
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. You can define and change the characteristics of this write operation using different WLanguage properties.
Note: 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)
Properties

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.
Remarks

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: 09/19/2024

Send a report | Local help