Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Peter Cooperx http://www.petercooper.co.uk/

« Newer Snippets
Older Snippets »
Showing 1-3 of 3 total  RSS 

Transactions in Rails / Active Record

transaction do
  david.withdrawal(100)
  mary.deposit(100)
end

Rebuild indexes on a table with MySQL

REPAIR TABLE tbl_name QUICK;

Querying the DB directly from Rails

ActiveRecord::Base.connection.select_one('select sum(quantity) from table').to_i
arrayofhashes = ActiveRecord::Base.connection.select_all('select * from table')
« Newer Snippets
Older Snippets »
Showing 1-3 of 3 total  RSS