---
title: "Determining if commits are executed in a transaction"
description: "How to find if my commits are executed in a transaction or not"
canonical_url: "https://www.bigbinary.com/blog/how-to-find-if-my-commits-are-executed-in-a-transaction-or-not"
markdown_url: "https://www.bigbinary.com/blog/how-to-find-if-my-commits-are-executed-in-a-transaction-or-not.md"
---

# Determining if commits are executed in a transaction

How to find if my commits are executed in a transaction or not

- Author: Neeraj Singh
- Published: March 13, 2009
- Categories: Rails

```ruby
ActiveRecord::Base.connection.supports_ddl_transactions?
```

## Links

- [Human page](https://www.bigbinary.com/blog/how-to-find-if-my-commits-are-executed-in-a-transaction-or-not)
