Files

SQLConstructor::BasicDelete_mysql

MySQL dialect descendant of BasicDelete class

Constants

METHODS

Attributes

attr_limit[R]
del_ignore[R]
del_low_priority[R]
del_quick[R]

Public Class Methods

new( _caller ) click to toggle source

Class constructor. _caller - the caller object

# File lib/dialects/mysql-constructor.rb, line 99
def initialize ( _caller )
    super
end

Public Instance Methods

method_missing( method, *args ) click to toggle source

Handle JOINs or send call to the parent.

# File lib/dialects/mysql-constructor.rb, line 106
def method_missing ( method, *args )
     # Handle all [*_]join calls:
    return _addJoin( method, *args )  if method =~ /^[a-z_]*join$/
    super
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.