|
|
|
|
|
hbGetTableDescription (Function) In french: hbRécupèreDescriptionTable Retrieves the description of an HBase table.
Connexion is hbConnection
Connexion.Server = "MonServeur"
DescTable is hbTableDescription = hbGetTableDescription(Connexion, "blog")
Trace("table : " + DescTable.Name)
FOR EACH DescCol OF DescTable.Column
Trace(TAB + "colonne : " + DescCol.Nom)
Trace(TAB + TAB + "attribut : ")
FOR EACH ValAttribut, NomAttribut of DescCol.Attribut
Trace(TAB + TAB + NomAttribut + " = " + ValAttribut)
END
END
Syntax
<Result> = hbGetTableDescription(<Connection> , <Table>)
<Result>: hbTableDescription variable hbTableDescription variable corresponding to the description of the table. <Connection>: hbConnection variable hbConnection variable corresponding to the connection to the HBase server. <Table>: Character string Name of the HBase table to use.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|