Python DB API List Tables

How do I list DB tables with Python API?

If this is not the case, is there any other way to do this?

thanks

+4
source share
1 answer

DBAPI has no function for this, so unfortunately you need to use SQL specific to the database engine (there is no standard way to display tables).

+12
source

All Articles