rails-sqlserver / 2000-2005-adapter

SQL Server 2000, 2005 and 2008 Adapter For Rails

This URL has Read+Write access

2000-2005-adapter / CHANGELOG
100644 56 lines (29 sloc) 2.083 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
 
MASTER
 
*
 
 
* 2.2.5 (January 4th, 2009)
 
* Added a log_info_schema_queries class attribute and make all queries to INFORMATION_SCHEMA silent by
  default. [Ken Collins]
 
* Fix millisecond support in datetime columns. ODBC::Timestamp incorrectly takes SQL Server milliseconds
  and applies them as nanoseconds. We cope with this at the DBI layer by using SQLServerDBI::Type::SqlserverTimestamp
  class to parse the before type cast value appropriately. Also update the adapters #quoted_date method
  to work more simply by converting ruby's #usec milliseconds to SQL Server microseconds. [Ken Collins]
 
* Core extensions for ActiveRecord now reflect on the connection before doing SQL Server things. Now
  this adapter is compatible for using with other adapters. [Ken Collins]
 
 
* 2.2.4 (December 5th, 2008)
 
* Fix a type left in #views_real_column_name. Also cache #view_information lookups. [Ken Collins]
 
 
* 2.2.3 (December 5th, 2008)
 
* Changing back to using real table name in column_definitions. Makes sure views get back only the columns
  that are defined for them with correct names, etc. Now supporting views by looking for NULL default and
  then if table name is a view, perform a targeted with sub select to the real table name and column name
  to find true default. [Ken Collins]
 
* Ensure that add_limit_offset! does not alter sub queries. [Erik Bryn]
 
 
2.2.2 (December 2nd, 2008)
 
* Add support for view defaults by making column_definitions use real table name for schema info. [Ken Collins]
 
* Include version in connection method and inspection. [Ken Collins]
 
 
2.2.1 (November 25th, 2008)
 
* Add identity insert support for views. Cache #views so that identity #table_name_or_views_table_name
  will run quickly. [Ken Collins]
 
* Add views support. ActiveRecord classes can use views. The connection now has a #views method and
  #table_exists? will not fall back to checking views too. [Ken Collins]
 
 
2.2.0 (November 21st, 2008)
 
* Release for rails 2.2.2. Many many changes. [Ken Collins], [Murray Steele], [Shawn Balestracci], [Joe Rafaniello]