Files

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

# 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’ )

# File lib/dialects/example-constructor.rb, line 40
def method_missing ( method, *args )
    return super
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.