aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/transactions.rb
Commit message (Expand)AuthorAgeFilesLines
* eliminate alias_method_chain from ActiveRecordwycats2010-05-091-12/+10
* edit pass in the transactions preamble rdocXavier Noria2010-05-021-24/+31
* after_(commit|rollback) rdoc, edit passXavier Noria2010-04-301-5/+5
* Update after_commit and after_rollback docs and tests to use new style API wi...Brian Durand2010-04-291-5/+0
* Add after_commit and after_rollback callbacks to ActiveRecord that are called...Brian Durand2010-04-291-14/+117
* save(false) is gone, use save(:validate => false) instead.José Valim2010-01-171-2/+2
* Break up DependencyModule's dual function of providing a "depend_on" DSL and ...Joshua Peek2009-05-281-1/+1
* Use DependencyModule for included hooks in ActiveRecordBryan Helmkamp2009-05-111-7/+5
* Merge docrailsPratik Naik2009-04-051-0/+2
* Revert "Wrap calls to update_attributes in a transaction."Michael Koziarski2009-02-221-15/+1
* Wrap calls to update_attributes in a transaction.Xavier Noria2009-02-221-1/+15
* Introduce transaction_joinable flag to mark that the fixtures transaction can...Jeremy Kemper2009-01-101-15/+12
* Merge branch 'master' into savepointsJeremy Kemper2009-01-101-2/+2
|\
| * Don't use the transaction instance method so that people with has_one/belongs...Frederick Cheung2008-12-101-2/+2
* | Rename ActiveRecord::Base#transaction's :force option to :nest. Improve docum...Hongli Lai (Phusion)2008-11-031-2/+57
* | Improve documentation for DatabaseStatements#transactions and AbstractAdapter...Hongli Lai (Phusion)2008-11-031-0/+2
* | Implement savepoints.Jonathan Viney2008-11-031-8/+4
|/
* Merge docrailsPratik Naik2008-10-051-18/+69
* Merge docrailsPratik Naik2008-09-031-1/+1
* Rollback the transaction when a before_* callback returns false.Xavier Noria2008-08-241-2/+14
* Merge docrails changesPratik Naik2008-07-281-3/+6
* Move the transaction counter to the connection object rather than maintaining...Jonathan Viney2008-07-151-14/+3
* Merge docrails.Pratik Naik2008-05-251-2/+2
* Improve documentation.Pratik Naik2008-04-051-1/+1
* Remove leaky unused signal handler for transactions.Jeremy Kemper2007-12-221-2/+0
* Ruby 1.9 compat: fix warnings, shadowed block vars, and unitialized instance ...Jeremy Kemper2007-12-221-3/+3
* Removed documentation for the removed rollback! method on transactions and me...Tobias Lütke2007-11-291-12/+2
* Smattering of grammatical fixes to documentation. Closes #10083 [BobSilva]Marcel Molina2007-11-081-1/+1
* Make transaction documentation example more realisticMarcel Molina2007-11-061-2/+2
* Explain semantics of having several different AR instances in a transaction b...Marcel Molina2007-11-061-0/+13
* Change the implementation of ActiveRecord's attribute reader and writer methods:Michael Koziarski2007-08-141-1/+2
* Remove deprecated object transactions. People relying on this functionality ...Michael Koziarski2007-03-161-39/+4
* Added database connection as a yield parameter to ActiveRecord::Base.transact...David Heinemeier Hansson2007-02-211-0/+11
* Fix new_record? and id rollback. Closes #6910.Jeremy Kemper2007-01-121-15/+14
* Rollback #new_record? and #id values for created records that rollback in an ...Rick Olson2007-01-021-2/+19
* Deprecation: object transactions warning.Jeremy Kemper2006-11-021-5/+14
* Wrap save! in a transaction. Closes #6324.Jeremy Kemper2006-10-101-2/+6
* r4644@asus: jeremy | 2006-06-16 14:57:03 -0700Jeremy Kemper2006-06-191-17/+14
* Replace alias method chaining with Module#alias_method_chain. [Marcel Molina ...Marcel Molina2006-04-291-5/+3
* Replace Ruby's deprecated append_features in favor of included. [Marcel Molin...Marcel Molina2006-04-291-2/+1
* Fix docs (closes #2491)David Heinemeier Hansson2005-10-261-2/+2
* Added AbstractAdapter#select_value and AbstractAdapter#select_values as conve...David Heinemeier Hansson2005-09-241-3/+1
* Added rollbacks of transactions if they're active as the dispatcher is killed...David Heinemeier Hansson2005-04-101-0/+7
* Finished polishing API docsDavid Heinemeier Hansson2005-02-231-2/+2
* Fixed documentation snafus #575, #576, #577, #585David Heinemeier Hansson2005-02-071-2/+2
* Restored thread safety to Active Record [andreas]David Heinemeier Hansson2004-12-301-10/+16
* Transactions are now actually working on the database level on save, but thre...David Heinemeier Hansson2004-12-301-1/+2
* Fixed that nested transactions now work by letting the outer most transaction...David Heinemeier Hansson2004-12-221-13/+11
* InitialDavid Heinemeier Hansson2004-11-241-0/+119