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
privatestaticfinalStringSQL_SELECT_ALL_TABLES = "select columns.table_name, columns.column_name, columns.column_type, columns.ordinal_position, columns.column_key, columns.is_nullable from information_schema.columns, information_schema.tables where tables.table_schema=schema() and columns.table_name = tables.table_name and columns.table_schema = tables.table_schema and tables.table_type='BASE TABLE' order by columns.table_name, columns.column_name";
13
13
privatestaticfinalStringSQL_SELECT_ALL_PKS = "select key_column_usage.table_name, key_column_usage.column_name, key_column_usage.ordinal_position from information_schema.key_column_usage where key_column_usage.table_schema=schema() and key_column_usage.constraint_name = 'PRIMARY' order by key_column_usage.table_name, key_column_usage.ordinal_position";
@@ -31,12 +31,12 @@ public void closeConnection() {
0 commit comments