Method: DbBrowser::ConnectionMan::Connection#fetch_table_defs

Defined in:
lib/dbbrowser/connection.rb

#fetch_table_defsObject



82
83
84
85
86
# File 'lib/dbbrowser/connection.rb', line 82

def fetch_table_defs
  @connection.tables.sort.map do |name|
    Table.new( self, name )
  end
end