↧
Answer by Sylvain Leroux for Python odbc; how to find all tables in an odbc
(the ODBC driver was not specifie at time of this answer)From PyODBC documentation:Most of the ODBC catalog functions are available as methods on Cursor objects. The results are presented as SELECT...
View ArticlePython odbc; how to find all tables in an odbc
Is there any way to get a list of all tables available through an odbc connection.I have to fetch data from tables that are generated along the way, and therefore I don't know the names in advance.
View Article