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

   1  transaction do
   2    david.withdrawal(100)
   3    mary.deposit(100)
   4  end

Rebuild indexes on a table with MySQL

   1  REPAIR TABLE tbl_name QUICK;

Querying the DB directly from Rails

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