Problem: you want to get at the underlying database connection object, e.g. so you can do something like create_function or create_aggregate on a SQLite database. You try ActiveRecord::Base.connection but that just gives you the Rails connection adapter, not the underlying database connection.
Solution:
db = ActiveRecord::Base.connection.instance_variable_get(:@connection) db.create_aggregate("xxx", 1) do etc.