Changeset 6012
- Timestamp:
- 01/22/07 23:07:54 (2 years ago)
- Files:
-
- trunk/activerecord/CHANGELOG (modified) (1 diff)
- trunk/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/activerecord/CHANGELOG
r5960 r6012 1 1 *SVN* 2 3 * Make sure sqlite3 driver closes open connections on disconnect [Rob Rasmussen] 2 4 3 5 * [DOC] clear up some ambiguity with the way has_and_belongs_to_many creates the default join table name. #7072 [jeremymcanally] trunk/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb
r5955 r6012 105 105 def requires_reloading? 106 106 true 107 end 108 109 def disconnect! 110 super 111 @connection.close rescue nil 107 112 end 108 113