ID of adapter in migrations

Rails 2.3

How does one identify the adapter that a migration is using? I have some SQL code that only applies if the postgresql adapter is involved and I wish to put my execute method inside a suitable conditional. However, I cannot see a way to get this information from an instance of ActiveRecord::Migration. Nonetheless, some means must exist for migrations to work.

How do I ID the DBMS adapter that the migration is using?

Rails 2.3

How does one identify the adapter that a migration is using? I have some SQL code that only applies if the postgresql adapter is involved and I wish to put my execute method inside a suitable conditional. However, I cannot see a way to get this information from an instance
of ActiveRecord::Migration. Nonetheless, some means must exist for migrations to work.

How do I ID the DBMS adapter that the migration is using?

You could check the class of ActiveRecord::Base.connection

Fred

Frederick Cheung wrote:

You could check the class of ActiveRecord::Base.connection

Fred

Works for me. Thanks.