ListTablesResult

class borneo.ListTablesResult[source]

Bases: borneo.operations.Result

Represents the result of a NoSQLHandle.list_tables() operation.

On a successful operation the table names are available as well as the index of the last returned table. Tables are returned in a list, sorted alphabetically.

Methods Summary

get_last_returned_index() Returns the index of the last table name returned.
get_tables() Returns the array of table names returned by the operation.

Methods Documentation

get_last_returned_index()[source]

Returns the index of the last table name returned. This can be provided to ListTablesRequest to be used as a starting point for listing tables.

Returns:the index.
Return type:int
Versionadded:5.4.0
get_tables()[source]

Returns the array of table names returned by the operation.

Returns:the table names.
Return type:list(str)