aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/connections
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-03-23 00:56:13 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-03-23 00:56:13 +0000
commitf30b7a31bda74715c09759d03064f6f7c7c784b9 (patch)
tree720af60a1f2ca12c087af1d2d44ec0df98af9ebe /activerecord/test/connections
parent4043b5cdb3152f09727b3fb0a5b43679cdea7406 (diff)
downloadrails-f30b7a31bda74715c09759d03064f6f7c7c784b9.tar.gz
rails-f30b7a31bda74715c09759d03064f6f7c7c784b9.tar.bz2
rails-f30b7a31bda74715c09759d03064f6f7c7c784b9.zip
Fixed the MS SQL adapter to work with the new limit/offset approach and with binary data (still suffering from 7KB limit, though) #901 [delynnb]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@982 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/connections')
-rw-r--r--activerecord/test/connections/native_sqlserver/connection.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/activerecord/test/connections/native_sqlserver/connection.rb b/activerecord/test/connections/native_sqlserver/connection.rb
index 8d758a02ab..aa19fc7700 100644
--- a/activerecord/test/connections/native_sqlserver/connection.rb
+++ b/activerecord/test/connections/native_sqlserver/connection.rb
@@ -4,6 +4,9 @@ require 'logger'
ActiveRecord::Base.logger = Logger.new("debug.log")
+db1 = 'activerecord_unittest'
+db2 = 'activerecord_unittest2'
+
ActiveRecord::Base.establish_connection(
:adapter => "sqlserver",
:host => "localhost",