class SqlPostgres::NullConnection
This is a special connection that is used when there isn't a real one. Any attempt to use it causes a NoConnection
exception.
Public Instance Methods
method_missing(method, *args)
click to toggle source
Raises NoConnection
# File lib/sqlpostgres/NullConnection.rb, line 10 def method_missing(method, *args) raise NoConnection end