class SQLConstructor::BasicSelect_example
Public Class Methods
new( _caller, *list )
click to toggle source
Class constructor. Init any attributes here. Do not forget to call 'super'! _caller - the caller object *list - list of sources for the FROM clause
Calls superclass method
SQLConstructor::BasicSelect::new
# File lib/dialects/example-constructor.rb, line 15 def initialize ( _caller, *list ) super # @attr_foo = false end
Public Instance Methods
method_missing( method, *args )
click to toggle source
You may do mostly anything here, but don't forget to call method_missing
of the parent ( 'return super' )
Calls superclass method
SQLConstructor::GenericQuery#method_missing
# File lib/dialects/example-constructor.rb, line 40 def method_missing ( method, *args ) return super end