Top Level Namespace

Defined Under Namespace

Classes: EachSQL

Instance Method Summary collapse

Instance Method Details

#EachSQL(input, type = :default) ⇒ Object

Shortcut method for creating a Enumerable EachSQL object for the given input. @param input Input script. @param The type of the input SQL script. :default, :mysql, and :oracle (or :plsql) @return Enumerable



10
11
12
# File 'lib/each_sql.rb', line 10

def EachSQL input, type = :default
	EachSQL.new(input, EachSQL::Defaults[type])
end