class Dbee::Providers::NullProvider
Default stand-in provider that ships with Dbee
. The main use-case would be to plug in a provider or provide your own implementation. There really is no real-world use of this provider.
Public Instance Methods
sql(_model, _query)
click to toggle source
# File lib/dbee/providers/null_provider.rb, line 16 def sql(_model, _query) 'SELECT NULL' end