You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
selectTablesSql=select SCHEMA_NAME as TABLE_SCHEMA, TABLE_NAME as TABLE_NAME, RECORD_COUNT as RECORD_COUNT from M_TABLES where SCHEMA_NAME = :schema
# return table_name, column_name, comments for a specific :schema
# useful if db driver doesn't return this info
selectColumnCommentsSql=select TABLE_NAME as TABLE_NAME, COLUMN_NAME as COLUMN_NAME, COMMENTS as COMMENTS from TABLE_COLUMNS where SCHEMA_NAME = :schema