ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / Managing databases / Big Data / Managing HBase databases
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Retrieves the description of an HBase table.
Example
// Connexion
Connexion is hbConnection
Connexion.Server = "MonServeur"
// Récupération de la description de la table
DescTable is hbTableDescription = hbGetTableDescription(Connexion, "blog")
// Affichage du nom de la table
Trace("table : " + DescTable.Name)
// Affichage de la description des colonnes
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.
Component: wd300big.dll
Minimum version required
  • Version 21
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help