The problem is simple; I wanted a method by which a model in my app could use a table from another MySQL Database (on the same server). The solution is equally simple:
Where other_db is the database name, and table_name is the table you want to use.
class MyModel < ActiveRecord::Base
set_table_name "other_db.table_name"
end