Method: Sequel::SQLite::DatabaseMethods#tables

Defined in:
lib/sequel/adapters/shared/sqlite.rb

#tables(opts = OPTS) ⇒ Object

Array of symbols specifying the table names in the current database.

Options:

:server

Set the server to use.



209
210
211
# File 'lib/sequel/adapters/shared/sqlite.rb', line 209

def tables(opts=OPTS)
  tables_and_views(TABLES_FILTER, opts)
end