ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / Big Data / Managing HBase databases
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
Retrieves the description of an HBase table.
Example
// Connection
Connection is hbConnection
Connection.Server = "MyServer"
// Retrieve the description of the table
TableDesc is hbTableDescription = hbGetTableDescription(Connection, "blog")
// Display the name of the table
Trace("table: " + TableDesc.Name)
// Display the description of columns
FOR EACH ColDesc OF TableDesc.Column
Trace(TAB + "column: " + ColDesc.Name)
Trace(TAB + TAB + "attribute: ")
FOR EACH AttributeVal, AttributeName of ColDesc.Attribute
Trace(TAB + TAB + AttributeName + " = " + AttributeVal)
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: wd290big.dll
Minimum version required
  • Version 21
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help