method

begin_db_transaction

Importance_0
Ruby on Rails latest stable (v7.1.3.2) - 0 notes - Class: DatabaseStatements
begin_db_transaction() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/connection_adapters/sqlite3/database_statements.rb, line 77
        def begin_db_transaction # :nodoc:
          log("begin transaction", "TRANSACTION") do
            with_raw_connection(allow_retry: true, materialize_transactions: false) do |conn|
              result = conn.transaction
              verified!
              result
            end
          end
        end
Register or log in to add new notes.