class Amalgalite::MemoryDatabase
The encapsulation of a connection to an SQLite3 in-memory database.
Open an in-memory database:
db = Amalgalite::MemoryDatabase.new
Public Class Methods
new()
click to toggle source
Calls superclass method
Amalgalite::Database.new
# File lib/amalgalite/memory_database.rb, line 11 def initialize super( ":memory:" ) end