diff options
Diffstat (limited to 'src/guff/database.cr')
-rw-r--r-- | src/guff/database.cr | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/guff/database.cr b/src/guff/database.cr index bab300f..0e41b75 100644 --- a/src/guff/database.cr +++ b/src/guff/database.cr @@ -71,7 +71,7 @@ module Guff def all( sql : String, args = nil : Array(String) | Hash(String, String) | Nil, - &block : Proc(Hash(String, ::SQLite3::Value), Nil) \ + &block : Hash(String, ::SQLite3::Value) -> \ ) # build statement run(sql, args) do |rs| @@ -117,7 +117,7 @@ module Guff def query( sql : String, args = nil : Array(String) | Hash(String, String) | Nil, - &block : Proc(::SQLite3::ResultSet, Nil) \ + &block : ::SQLite3::ResultSet -> \ ) run(sql, args, &block) end @@ -131,7 +131,7 @@ module Guff private def run( sql : String, args : Hash(String, String), - &block : Proc(::SQLite3::ResultSet, Nil) \ + &block : ::SQLite3::ResultSet -> \ ) run(sql, [args], &block) end @@ -139,7 +139,7 @@ module Guff private def run( sql : String, args = nil : Array(String | Hash(String, String))?, - &block : Proc(::SQLite3::ResultSet, Nil) \ + &block : ::SQLite3::ResultSet -> \ ) # build statement puts "sql = %s" % [sql] |