Retrieves the list of tables found on an HBase server.
// Connection
Connection is hbConnection
Connection.Server = "MyServer"
// Display the list of tables
Trace(hbListTable(Connection))
Syntax
<Result> = hbListTable(<Connection>)
<Result>: Character string
List of tables found on the HBase server. This list has the following format:
<Name of Table 1> + CR + <Name of Table 2> + CR +...
<Connection>: hbConnection variable
Name of the hbConnection variable that corresponds to the connection to the HBase server.