method
begin
v4.0.2 -
Show latest stable
- Class:
ActiveRecord::ConnectionAdapters::OpenTransaction
begin(options = {})public
No documentation available.
# File activerecord/lib/active_record/connection_adapters/abstract/transaction.rb, line 100
def begin(options = {})
if finishing?
parent.begin
else
SavepointTransaction.new(connection, self, options)
end
end