mirror of
https://gitea.invidious.io/iv-org/shard-crystal-sqlite3.git
synced 2024-08-15 00:53:26 +00:00
Update to crystal-db ~> 0.11.0 (#77)
This commit is contained in:
parent
985bfa2d7c
commit
2849fe15c8
2 changed files with 6 additions and 2 deletions
|
@ -4,12 +4,12 @@ version: 0.18.0
|
|||
dependencies:
|
||||
db:
|
||||
github: crystal-lang/crystal-db
|
||||
version: ~> 0.10.0
|
||||
version: ~> 0.11.0
|
||||
|
||||
authors:
|
||||
- Ary Borenszweig <aborenszweig@manas.tech>
|
||||
- Brian J. Cardiff <bcardiff@manas.tech>
|
||||
|
||||
crystal: ">= 0.35.0, < 2.0.0"
|
||||
crystal: ">= 1.0.0, < 2.0.0"
|
||||
|
||||
license: MIT
|
||||
|
|
|
@ -47,6 +47,10 @@ class SQLite3::ResultSet < DB::ResultSet
|
|||
value
|
||||
end
|
||||
|
||||
def next_column_index : Int32
|
||||
@column_index
|
||||
end
|
||||
|
||||
def read(t : Int32.class) : Int32
|
||||
read(Int64).to_i32
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue