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