Search Results

0
votes
6answers
433 views

dynamic table names for Active Record models

I have an interesting Active Record problem and I'm not quite sure what the cleanest solution is. The legacy database that I am integrating with has a strange wrinkle in its schema where one logica …
1
vote

Unable to rescue from “Lost connection to MySQL server” error

From your comment it looks like what's happening is that a Mysql::Error exception is being thrown, but then caught by ActiveRecord which then throws an ActiveRecord::StatementInvalid exception (whi …
1
vote

What are alternatives to find_by_sql for computationaly-heavy queries?

You might want to look at using DataMapper or Sequel for your ORM if you're finding that …
1
vote

what are the advantages of mocha over rspec’s built in mocking framework?

One specific feature I really like is being able to stub out all instances of a class. A lot of times I do something like the following with rspec mocks: stub_car = mock(Car) stub_c …