ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / Big Data / Managing HBase databases
WINDEV
WindowsLinuxJavaEtats et RequêtesCode Utilisateur (MCU)
WEBDEV
WindowsLinuxPHPWEBDEV - Code Navigateur
WINDEV Mobile
AndroidWidget AndroidiPhone/iPadWidget IOSApple WatchMac Catalyst
Autres
Procédures stockées
Récupère la description d'une table HBase.
Exemple
// Connexion
Connexion est un hbConnexion
Connexion.Serveur = "MonServeur"
// Récupération de la description de la table
DescTable est un hbDescriptionTable = hbRécupèreDescriptionTable(Connexion, "blog")
// Affichage du nom de la table
Trace("table : " + DescTable.Nom)
// Affichage de la description des colonnes
POUR TOUT DescCol DE DescTable.Colonne
	Trace(TAB + "colonne : " + DescCol.Nom)
	Trace(TAB + TAB + "attribut : ")
	POUR TOUT ValAttribut, NomAttribut de DescCol.Attribut
		Trace(TAB + TAB + NomAttribut + " = " + ValAttribut)
	FIN
FIN
Syntaxe
<Résultat> = hbRécupèreDescriptionTable(<Connexion> , <Table>)
<Résultat> : Variable de type hbDescriptionTable
Variable de type hbDescriptionTable correspondant à la description de la table.
<Connexion> : Variable de type hbConnexion
Variable de type hbConnexion correspondant à la connexion au serveur HBase.
<Table> : Chaîne de caractères
Nom de la table HBase à manipuler.
Composante : wd300big.dll
Minimum version required
  • Version 21
Comments
Click [Add] to post a comment

Last update: 09/14/2024

Send a report | Local help