class 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
Calls superclass method
SQLConstructor::BasicDelete::new
# File lib/dialects/mysql-constructor.rb, line 95 def initialize ( _caller ) super end
Public Instance Methods
method_missing( method, *args )
click to toggle source
Handle JOINs or send call to the parent.
Calls superclass method
SQLConstructor::GenericQuery#method_missing
# File lib/dialects/mysql-constructor.rb, line 102 def method_missing ( method, *args ) # Handle all [*_]join calls: return _addJoin( method, *args ) if method =~ /^[a-z_]*join$/ super end