Changeset 3252
- Timestamp:
- 12/08/05 07:27:48 (3 years ago)
- Files:
-
- trunk/activerecord/CHANGELOG (modified) (1 diff)
- trunk/activerecord/lib/active_record/connection_adapters/oci_adapter.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/activerecord/CHANGELOG
r3246 r3252 1 1 *SVN* 2 3 * Oracle: active? performs a select instead of a commit. #3133 [Michael Schoen] 2 4 3 5 * MySQL: more robust test for nullified result hashes. #3124 [Stefan Kaes] trunk/activerecord/lib/active_record/connection_adapters/oci_adapter.rb
r3249 r3252 551 551 # known state. 552 552 def ping 553 @connection. commit553 @connection.exec("select 1 from dual") { |r| nil } 554 554 @active = true 555 555 rescue