The activerecord-sqlserver-adapter gem is still sort of available via gems.rubyonrails.org, but it will not install on machines that have Rails 2.1 (or its version of ActiveSupport) installed. This has been confirmed with versions of rubygems through 1.2. This seems to indicate that Rails is no longer tested against the MSSQL adapter and that the adapter is also no longer tested against Rails since the move of the Rails core to Git. Is MSSQL still considered a support target for RoR or has it been deprecated entirely? For all its known bugs especially against SQL Server 2005, the MSSQL adapter at least installed properly and still seemed to receive patches now and then into the Rails 2.0.x era. Are adapters for any of the commercial databases still actively supported, or are mysql, postgres and sqlite the only databases any of us should be using with AR in the future? Was the removal from the core intended as a decoupling or a deprecation? Thanks. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On 30 Jun 2008, at 21:45, Steve Koppelman wrote:> > The activerecord-sqlserver-adapter gem is still sort of available via > gems.rubyonrails.org, but it will not install on machines that have > Rails 2.1 (or its version of ActiveSupport) installed. This has been > confirmed with versions of rubygems through 1.2. > > This seems to indicate that Rails is no longer tested against the > MSSQL > adapter and that the adapter is also no longer tested against Rails > since the move of the Rails core to Git. Is MSSQL still considered a > support target for RoR or has it been deprecated entirely? For all its > known bugs especially against SQL Server 2005, the MSSQL adapter at > least installed properly and still seemed to receive patches now and > then into the Rails 2.0.x era. >The rails unit tests are usually run against mysql, postgres, sqlite. Apart from anything else most contributors can''t run the tests against those databases. A while back I made some changes to rails'' test which required some database specific changes. I handled postgres, mysql, sqlite myself since I have easy access to them. I was told not to worry about the others, that it was up to their maintainers to keep the tests passing.> Are adapters for any of the commercial databases still actively > supported, or are mysql, postgres and sqlite the only databases any of > us should be using with AR in the future? Was the removal from the > core > intended as a decoupling or a deprecation? >I don''t believe rails-core worries about them much (hence the decoupling). I''ve no idea who maintains the mssql adapter, but I suggest you voice your concerns to them. Fred --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Interesting. I just did this install without issue. gem -v 1.1.1 rails -v Rails 2.1.0 sudo gem install activerecord-sqlserver-adapter --sourcehttp://gems.rubyonrails.org Updating metadata for 13 gems from http://gems.rubyonrails.org/ ............. complete Updating metadata for 13 gems from http://gems.rubyonrails.org/ ............. complete Successfully installed activerecord-sqlserver-adapter-1.0.0.9250 1 gem installed We use sqlserver adapter daily, though admittedly we use it against sqlserver 2000. No issues in the last 2 years. On Mon, Jun 30, 2008 at 3:45 PM, Steve Koppelman < rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > The activerecord-sqlserver-adapter gem is still sort of available via > gems.rubyonrails.org, but it will not install on machines that have > Rails 2.1 (or its version of ActiveSupport) installed. This has been > confirmed with versions of rubygems through 1.2. > > This seems to indicate that Rails is no longer tested against the MSSQL > adapter and that the adapter is also no longer tested against Rails > since the move of the Rails core to Git. Is MSSQL still considered a > support target for RoR or has it been deprecated entirely? For all its > known bugs especially against SQL Server 2005, the MSSQL adapter at > least installed properly and still seemed to receive patches now and > then into the Rails 2.0.x era. > > Are adapters for any of the commercial databases still actively > supported, or are mysql, postgres and sqlite the only databases any of > us should be using with AR in the future? Was the removal from the core > intended as a decoupling or a deprecation? > > Thanks. > -- > Posted via http://www.ruby-forum.com/. > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Possibly Parallel Threads
- could not find activerecord-sqlserver-adapter locally or in a repository
- ActiveRecord and tiny_tds
- Need the activerecord-sqlserver-adapter but...
- How to find the last SQL statement executed in ActiveRecord
- Is RoR on SQLServer suitable for a commercial application?