Update to crystal-db ~> 0.10.0

This commit is contained in:
Brian J. Cardiff 2020-09-30 11:30:38 -03:00
parent f961d2cdb6
commit 12dcc905a9
2 changed files with 3 additions and 7 deletions

View file

@ -4,12 +4,12 @@ version: 0.16.0
dependencies:
db:
github: crystal-lang/crystal-db
version: ~> 0.9.0
version: ~> 0.10.0
authors:
- Ary Borenszweig <aborenszweig@manas.tech>
- Brian J. Cardiff <bcardiff@manas.tech>
crystal: 0.28.0
crystal: 0.35.0
license: MIT

View file

@ -9,11 +9,7 @@ class SQLite3::Connection < DB::Connection
end
def self.filename(uri : URI)
{% if compare_versions(Crystal::VERSION, "0.30.0-0") >= 0 %}
URI.decode_www_form((uri.host || "") + uri.path)
{% else %}
URI.unescape((uri.host || "") + uri.path)
{% end %}
end
def build_prepared_statement(query) : Statement