Changeset 5930
- Timestamp:
- 01/14/07 15:20:52 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1-2-pre-release/activerecord/CHANGELOG
r5920 r5930 1 1 *SVN* 2 3 * MySQL: retain SSL settings on reconnect. #6976 [randyv2] 2 4 3 5 * SQLServer: handle [quoted] table names. #6635 [rrich] branches/1-2-pre-release/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb
r5599 r5930 386 386 @connection.options(Mysql::SET_CHARSET_NAME, encoding) rescue nil 387 387 end 388 @connection.ssl_set(@config[:sslkey], @config[:sslcert], @config[:sslca], @config[:sslcapath], @config[:sslcipher]) if @config[:sslkey] 388 389 @connection.real_connect(*@connection_options) 389 390 execute("SET NAMES '#{encoding}'") if encoding