This is cool :)
I usually used this to get the table names -
cursor = conn.cursor()
for row in cursor.tables():
print(row.table_name)
Then getting the columns was easy for whichever table I needed.
This is cool :)
I usually used this to get the table names -
cursor = conn.cursor()
for row in cursor.tables():
print(row.table_name)
Then getting the columns was easy for whichever table I needed.