mirror of
https://gitea.invidious.io/iv-org/shard-crystal-db.git
synced 2024-08-15 00:53:32 +00:00
683e6bdfa7
`#query`, `#exec`, `#scalar`, `#scalar?` as main query methods from `Database` blocks overrides that ensure statements are closed.
10 lines
149 B
Crystal
10 lines
149 B
Crystal
module DB
|
|
abstract class Driver
|
|
getter options
|
|
|
|
def initialize(@options)
|
|
end
|
|
|
|
abstract def build_connection : Connection
|
|
end
|
|
end
|