Skip to content

Commit e798bab

Browse files
committed
Create version 2.2.7.
1 parent 08d57b5 commit e798bab

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

2000-2005-adapter.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = "2000-2005-adapter"
3-
s.version = "2.2.6"
3+
s.version = "2.2.7"
44
s.date = "2009-01-09"
55
s.summary = "SQL Server 2000 & 2005 Adapter For Rails."
66
s.email = "ken@metaskills.net"

CHANGELOG

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

22
MASTER
33

4+
*
5+
6+
7+
* 2.2.7 (January 9th, 2009)
8+
49
* Created a connection#execute_procedure method that takes can take any number of ruby objects as variables
510
and quotes them according to the connection's rules. Also added an ActiveRecord::Base class level core
611
extension that hooks into this. It also checks if the connection responds to #execute_procedure and if
@@ -11,7 +16,7 @@ MASTER
1116
task that assists setting this to true when running tests. [Ken Collins]
1217

1318

14-
* 2.2.6 (January 8th, 2008)
19+
* 2.2.6 (January 8th, 2009)
1520

1621
* Introduced a bug in 2.2.5 in the #add_order! core ext for ActiveRecord. Fixed [Ken Collins]
1722

README.rdoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ Every class that sub classes ActiveRecord::Base will now have an execute_procedu
3333

3434
Account.execute_procedure :update_totals, 'admin', nil, true
3535

36-
3736
==== Native Data Type Support
3837

3938
Currently the following custom data types have been tested for schema definitions.

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.6'.freeze
153+
VERSION = '2.2.7'.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)