|
|
|
|
|
- Properties specific to hbCell variables
hbCell (Variable type) In french: hbCellule
The hbCell type is used to define the advanced characteristics of the content of a cell (item value) in an HBase table. You can define and change the characteristics of this content using different WLanguage properties. This type of variable is used by: - function hbRead: the result of function hbRead is an array of hbCell.
- variables of type hbWriting, to specify the values to be written.
Note: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
Connexion is hbConnection
Connexion.Server = "MonServeur"
Ecriture is hbWriting
Ecriture.Row = "post1"
Cellule is hbCell
Cellule.Column.Family = "post"
Cellule.Column.Qualifier = "titre"
Cellule.Value = "Ceci est mon message sur le blog."
Add(Ecriture.Cell, Cellule)
hbWrite(Connexion, "blog", Ecriture)
Properties Properties specific to hbCell variables The following properties can be used to handle a cell content: | | | Property name | Type used | Effect |
---|
Column | hbColumn variable | Column associated with the cell. | Timestamp | DateTime | Timestamp of the value read. | Value | Buffer | Content of the cell. |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|