Internal class which represents a basic UNION statement.
Class contructor. Takes a caller object as the first argument and UNION type as the second argument. Inits @obj to new SQLConstructor instance
# File lib/sqlconstructor.rb, line 491 def initialize ( _caller, type ) @type = type super _caller @obj = SQLConstructor.new( :dialect => @dialect, :tidy => @tidy ) end
Override GenericQuery method and send call to @obj
# File lib/sqlconstructor.rb, line 507 def _get ( *args ) @obj._get *args end
Override GenericQuery method and send call to @obj
# File lib/sqlconstructor.rb, line 514 def _remove ( *args ) @obj._remove *args end
Generated with the Darkfish Rdoc Generator 2.