So I\'ve got a couple of Firebird databases I need to convert. I\'ve managed to connect to them using python code and the kinterbasdb library, but I can\'t find a way to get
Getting the list of tables is:
In isql: show tables;
As a normal query:
SELECT a.RDB$RELATION_NAME FROM RDB$RELATIONS a WHERE COALESCE(RDB$SYSTEM_FLAG, 0) = 0 AND RDB$RELATION_TYPE = 0