mao 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/mao/version.rb +1 -1
- data/lib/mao.rb +0 -1
- metadata +1 -1
data/lib/mao/version.rb
CHANGED
data/lib/mao.rb
CHANGED
@@ -23,7 +23,6 @@ module Mao
|
|
23
23
|
# Execute the raw SQL +sql+ with positional +args+. The returned object
|
24
24
|
# varies depending on the database vendor.
|
25
25
|
def self.sql(sql, *args, &block)
|
26
|
-
STDERR.puts "#{sql}#{args ? " " + args.inspect : ""}"
|
27
26
|
@conn.exec(sql, *args, &block)
|
28
27
|
end
|
29
28
|
|