shard-crystal-sqlite3/src/sqlite3/connection.cr

34 lines
682 B
Crystal
Raw Normal View History

class SQLite3::Connection < DB::Connection
2016-02-04 00:29:19 +00:00
def initialize(database)
super
2016-02-04 00:29:19 +00:00
filename = self.class.filename(database.uri)
check LibSQLite3.open_v2(filename, out @db, (LibSQLite3::Flag::READWRITE | LibSQLite3::Flag::CREATE), nil)
end
2016-02-04 00:29:19 +00:00
def self.filename(uri : URI)
URI.unescape (if path = uri.path
(uri.host || "") + path
else
uri.opaque.not_nil!
end)
end
2016-02-04 00:29:19 +00:00
def build_statement(query)
Statement2.new(self, query)
end
2016-02-04 00:29:19 +00:00
def do_close
@statements_cache.values.each &.close
super
LibSQLite3.close_v2(self)
end
def to_unsafe
@db
end
private def check(code)
raise Exception.new(self) unless code == 0
end
end