MSSQL.get_file_tables

MSSQL.get_file_tables(names_only=True)[source]

Get information about FileTables (if available).

Parameters:

names_only (bool) – whether to return FileTables names only, defaults to True

Returns:

information about FileTables (if available)

Return type:

list or pandas.DataFrame

Examples:

>>> from pyhelpers.dbms import MSSQL

>>> mssql = MSSQL()
Connecting <server_name>@localhost:1433/master ... Successfully.

>>> mssql.get_file_tables()
[]