As far as I know, Rails doesn't offer this feature out of the box. However I have found a gem called db-charmer, which seems to be very close to what you are looking for.
Here is the best part (Per-Query Connection Management) :
Sometimes you have select queries that you know you want to run on the master. This could happen for example when you have just added some data and need to read it back and not sure if it made it all the way to the slave yet or no. For this situation and a few others there is a set of methods we’ve added to ActiveRecord models:
User.on_master.find_by_activation_code(code)
on_slave - this method is used to force a query to be run on a slave even in situations when it’s been previously forced to use the master. If there is more than one slave, one would be selected randomly. Tis method has two forms as well: block and proxy.
on_db(connection) - this method is what makes two previous methods possible. It is used to switch a model’s connection to some db for a short block of code or even for one statement (two forms). It accepts the same range of values as the switch_connection_to method does. Example:
Comment.on_db(:olap).count
Post.on_db(:foo).find(:first)