Notes posted by george
RSS feed
4 thanks

0 thanks
Current Database Name: Sqlite version
Get the current database name when using Sqlite:
ActiveRecord::Base.connection.instance_variable_get(:@config)[:database].split('/').last

0 thanks

5 thanks
Documentation for Associations
You are most likely looking for ActiveRecord::Associations::ClassMethods

4 thanks
Information on 'ModelName.transaction'
If you are looking for information about:
ModelName.transaction do ... end
or
transaction do ... end

4 thanks
Information on 'ModelName.transaction'
If you are looking for information about:
ModelName.transaction do ... end
or
transaction do ... end

9 thanks
Required Reading
The details for using layout (such as possible values for the conditions hash) can be found in ActionController::Layout::ClassMethods.