Module: SQL::Sqlite3

Defined in:
lib/sql/sqlite3.rb

Defined Under Namespace

Classes: Column, Table

Instance Method Summary collapse

Instance Method Details

#recreate_databaseObject



14
15
16
17
18
# File 'lib/sql/sqlite3.rb', line 14

def recreate_database
  DataMapper.logger.info "Dropping #{@uri.path}"
  system "rm #{@uri.path}"
  # do nothing, sqlite will automatically create the database file
end

#supports_schema_transactions?Boolean

Returns:

  • (Boolean)


6
7
8
# File 'lib/sql/sqlite3.rb', line 6

def supports_schema_transactions?
  true
end

#supports_serial?Boolean

Returns:

  • (Boolean)


20
21
22
# File 'lib/sql/sqlite3.rb', line 20

def supports_serial?
  true
end

#table(table_name) ⇒ Object



10
11
12
# File 'lib/sql/sqlite3.rb', line 10

def table(table_name)
  SQL::Sqlite3::Table.new(self, table_name)
end