Class: ROM::SQL::Gateway
- Inherits:
-
Gateway
- Object
- Gateway
- ROM::SQL::Gateway
- Includes:
- Dry::Core::Constants, Migration
- Defined in:
- lib/rom/sql/gateway.rb
Overview
SQL gateway
Constant Summary collapse
- CONNECTION_EXTENSIONS =
{ postgres: %i[pg_array pg_json pg_enum] }.freeze
Instance Attribute Summary collapse
- #logger ⇒ Object readonly
-
#migrator ⇒ Object
included
from Migration
readonly
Returns the value of attribute migrator.
- #options ⇒ Object readonly
Instance Method Summary collapse
-
#[](name) ⇒ Dataset
Return dataset with the given name.
- #auto_migrate!(conf, options = EMPTY_HASH) ⇒ Object included from Migration
-
#call(function, *args) ⇒ Object
Call a SQL function.
-
#create_table(*args, &block) ⇒ Object
Create a table using the configured connection.
-
#database_type ⇒ Symbol
Underlying database type.
-
#dataset(name) ⇒ Dataset
Return dataset with the given name.
-
#dataset?(name) ⇒ Boolean
Check if a dataset exists.
-
#disconnect ⇒ Object
Disconnect from the gateway's database.
-
#drop_table(*args, &block) ⇒ Object
Drops a table.
-
#initialize(uri, options = EMPTY_HASH) ⇒ SQL::Gateway
constructor
Initialize an SQL gateway.
-
#migration(&block) ⇒ Object
included
from Migration
Migration DSL.
-
#pending_migrations? ⇒ Boolean
included
from Migration
Check if there are any pending migrations.
-
#run(statement) ⇒ Object
Execute a statement.
-
#run_migrations(options = {}) ⇒ Object
included
from Migration
Run migrations.
-
#schema ⇒ Array
Returns a list of datasets inferred from table names.
-
#use_logger(logger) ⇒ Object
Setup a logger.
Constructor Details
#initialize(uri) ⇒ SQL::Gateway #initialize(uri, options) ⇒ SQL::Gateway #initialize(connection) ⇒ SQL::Gateway
Initialize an SQL gateway
Gateways are typically initialized via ROM::Configuration object, gateway constructor arguments such as URI and options are passed directly to this constructor
81 82 83 84 85 86 87 88 |
# File 'lib/rom/sql/gateway.rb', line 81 def initialize(uri, = EMPTY_HASH) @connection = connect(uri, ) load_extensions(Array([:extensions])) @options = super end |
Instance Attribute Details
#logger ⇒ Object (readonly)
31 32 33 |
# File 'lib/rom/sql/gateway.rb', line 31 def logger @logger end |
#migrator ⇒ Object (readonly) Originally defined in module Migration
Returns the value of attribute migrator.
#options ⇒ Object (readonly)
35 36 37 |
# File 'lib/rom/sql/gateway.rb', line 35 def @options end |
Instance Method Details
#[](name) ⇒ Dataset
Return dataset with the given name
This returns a raw Sequel database
106 107 108 |
# File 'lib/rom/sql/gateway.rb', line 106 def [](name) connection[name] end |
#auto_migrate!(conf, options = EMPTY_HASH) ⇒ Object Originally defined in module Migration
#call(function, *args) ⇒ Object
Call a SQL function
194 195 196 |
# File 'lib/rom/sql/gateway.rb', line 194 def call(function, *args) connection[Sequel.function(function, *args)].first.values.first end |
#create_table(*args, &block) ⇒ Object
Create a table using the configured connection
154 155 156 |
# File 'lib/rom/sql/gateway.rb', line 154 def create_table(*args, &block) connection.create_table(*args, &block) end |
#database_type ⇒ Symbol
Underlying database type
179 180 181 |
# File 'lib/rom/sql/gateway.rb', line 179 def database_type @database_type ||= connection.database_type.to_sym end |
#dataset(name) ⇒ Dataset
Return dataset with the given name
138 139 140 |
# File 'lib/rom/sql/gateway.rb', line 138 def dataset(name) connection[name] end |
#dataset?(name) ⇒ Boolean
Check if a dataset exists
147 148 149 |
# File 'lib/rom/sql/gateway.rb', line 147 def dataset?(name) schema.include?(name) end |
#disconnect ⇒ Object
Disconnect from the gateway's database
93 94 95 |
# File 'lib/rom/sql/gateway.rb', line 93 def disconnect connection.disconnect end |
#drop_table(*args, &block) ⇒ Object
Drops a table
161 162 163 |
# File 'lib/rom/sql/gateway.rb', line 161 def drop_table(*args, &block) connection.drop_table(*args, &block) end |
#migration(&block) ⇒ Object Originally defined in module Migration
Migration DSL
#pending_migrations? ⇒ Boolean Originally defined in module Migration
Check if there are any pending migrations
#run(statement) ⇒ Object
Execute a statement
203 204 205 |
# File 'lib/rom/sql/gateway.rb', line 203 def run(statement) connection.run(statement) end |
#run_migrations(options = {}) ⇒ Object Originally defined in module Migration
Run migrations
#schema ⇒ Array
Returns a list of datasets inferred from table names
170 171 172 |
# File 'lib/rom/sql/gateway.rb', line 170 def schema @schema ||= connection.tables end |
#use_logger(logger) ⇒ Object
Setup a logger
126 127 128 129 |
# File 'lib/rom/sql/gateway.rb', line 126 def use_logger(logger) @logger = logger connection.loggers << logger end |