module

Marten::DB::Model::Connection::ClassMethods

Instance methods

connection

Returns the database connection to use for the considered model.

Source
transaction(using : Nil | String | Symbol = nil, &)

Allows to run the underlying block in a database transaction.

A optional database alias can be specified in order to define the database connection to use in the context of the transaction (otherwise it defaults to the default connection). If the passed database alias doesn't correspond to any defined connections, a Marten::DB::Errors::UnknownConnection error will be raised.

Source