Skip to content

Commit b91ec6f

Browse files
committed
Release 2.2.15 version.
1 parent 683bb07 commit b91ec6f

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

2000-2005-adapter.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Gem::Specification.new do |s|
22
s.name = "2000-2005-adapter"
3-
s.version = "2.2.14"
4-
s.date = "2009-03-17"
3+
s.version = "2.2.15"
4+
s.date = "2009-03-23"
55
s.summary = "SQL Server 2000 & 2005 Adapter For Rails."
66
s.email = "ken@metaskills.net"
77
s.homepage = "http://github.com/rails-sqlserver/2000-2005-adapter/"

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11

22
MASTER
33

4+
*
5+
6+
7+
* 2.2.15 * (March 23rd, 2009)
8+
49
* Better add_lock! method that can add the lock to just about all the elements in the statement. This
510
could be eager loaded associations, joins, etc. Done so that paginated results can easily add lock
611
options for performance. Note, the tally count in add_limit_offset! use "WITH (NOLOCK)" explicitly

lib/active_record/connection_adapters/sqlserver_adapter.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def simplified_datetime
150150
class SQLServerAdapter < AbstractAdapter
151151

152152
ADAPTER_NAME = 'SQLServer'.freeze
153-
VERSION = '2.2.14'.freeze
153+
VERSION = '2.2.15'.freeze
154154
DATABASE_VERSION_REGEXP = /Microsoft SQL Server\s+(\d{4})/
155155
SUPPORTED_VERSIONS = [2000,2005].freeze
156156
LIMITABLE_TYPES = ['string','integer','float','char','nchar','varchar','nvarchar'].freeze

0 commit comments

Comments
 (0)