aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/binary_test.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-07-01 17:20:04 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-07-01 17:20:04 +0000
commitf2a29ca43cb0de38a25bf7f68bca5c11871692ce (patch)
tree49fafc3247a77dc1b8797e4425b28923af6a51d0 /activerecord/test/binary_test.rb
parent64612db7cf85aee8434e7b9b4fd8d6d0249c60e4 (diff)
downloadrails-f2a29ca43cb0de38a25bf7f68bca5c11871692ce.tar.gz
rails-f2a29ca43cb0de38a25bf7f68bca5c11871692ce.tar.bz2
rails-f2a29ca43cb0de38a25bf7f68bca5c11871692ce.zip
Added support for ODBC connections to MS SQL Server so you can connect from a non-Windows machine #1569 [Mark Imbriaco/DeLynn Berry] Added support for limit/offset with the MS SQL Server driver so that pagination will now work #1569 [DeLynn Berry]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1583 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/binary_test.rb')
-rw-r--r--activerecord/test/binary_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/activerecord/test/binary_test.rb b/activerecord/test/binary_test.rb
index d635621cef..ba43524264 100644
--- a/activerecord/test/binary_test.rb
+++ b/activerecord/test/binary_test.rb
@@ -8,6 +8,13 @@ class BinaryTest < Test::Unit::TestCase
def test_load_save
# Without using prepared statements, it makes no sense to test
+ # BLOB data with SQL Server, because the length of a statement is
+ # limited to 8KB.
+ if ActiveRecord::ConnectionAdapters.const_defined? :SQLServerAdapter
+ return true if ActiveRecord::Base.connection.instance_of?(ActiveRecord::ConnectionAdapters::SQLServerAdapter)
+ end
+
+ # Without using prepared statements, it makes no sense to test
# BLOB data with DB2, because the length of a statement is
# limited to 32KB.
if ActiveRecord::ConnectionAdapters.const_defined? :DB2Adapter