<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -130,7 +130,7 @@ It is our goal to match the adapter version with each version of rails. However
 
 First, you will need Ruby DBI and Ruby ODBC. If you are using the adapter under 1.9, then you need at least ruby-odbc version 0.9996. To my knowledge the ADO DBD for DBI is no longer supported. The installation below is not a comprehensive walk thru on how to get all the required moving parts like FreeTDS installed and/or configured. It will also assume gem installations of both the dependent libraries and the adapter itself.
 
-It should be noted that this version of the adapter was developed using both the ancient 0.0.23 version of DBI up to the current stable release of 0.4.1. Note that DBI 0.4.1 is the minimal for ruby 1.9 compatibility. Because later versions of DBI will be changing many things, IT IS HIGHLY RECOMMENDED that you max your install to version 0.4.1 which the examples below show. For the time being we are not supporting DBI versions higher than 0.4.1. The good news is that if you were using a very old DBI with ADO, technically this adapter will still work for you, but be warned your path is getting old and may not be supported for long.
+It should be noted that this version of the adapter was developed using both the ancient 0.0.23 version of DBI up to the current stable release of 0.4.1. Note that DBI 0.4.1 is the minimal for ruby 1.9 compatibility. Because later versions of DBI will be changing many things, IT IS HIGHLY NECESSARY that you max your install to version 0.4.1 which the examples below show. For the time being we are not supporting DBI versions higher than 0.4.1 this they settle down on new internal implementations.
 
   $ gem install dbi --version 0.4.1
   $ gem install dbd-odbc --version 0.2.4</diff>
      <filename>README.rdoc</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,10 @@
 require 'cases/sqlserver_helper'
 require 'models/order'
 
+class SqlServerRailsOrders &lt; ActiveRecord::Base
+  set_table_name 'rails.orders'
+end
+
 class TableNameTestSqlserver &lt; ActiveRecord::TestCase
   
   self.use_transactional_fixtures = false
@@ -18,5 +22,17 @@ class TableNameTestSqlserver &lt; ActiveRecord::TestCase
     assert_sql(/SELECT \* FROM \[orders\]/) { Order.all }
   end
   
+  context 'Table scoped to user.table_name' do
+
+    setup do
+      @klass = SqlServerRailsOrders
+    end
+
+    should 'have no issue doing basic column reflection' do
+      assert_nothing_raised() { @klass.columns }
+    end
+
+  end
+  
   
 end</diff>
      <filename>test/cases/table_name_test_sqlserver.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>36a1809e85cf9ddc37c0927b9322710f2a8461c5</id>
    </parent>
  </parents>
  <author>
    <name>Ken Collins</name>
    <email>ken@metaskills.net</email>
  </author>
  <url>http://github.com/rails-sqlserver/2000-2005-adapter/commit/8f612f54ea64ce750682f82072c2aca86e319003</url>
  <id>8f612f54ea64ce750682f82072c2aca86e319003</id>
  <committed-date>2009-09-15T12:47:40-07:00</committed-date>
  <authored-date>2009-09-15T12:47:40-07:00</authored-date>
  <message>Update README with importance of using 0.4.1 of DBI.</message>
  <tree>c927b63b41f25a9fedb6b01b14b7fad4bc3f43d2</tree>
  <committer>
    <name>Ken Collins</name>
    <email>ken@metaskills.net</email>
  </committer>
</commit>
