Rails & MSSQL 2008 - Will We Hit Barriers?

后端 未结 1 1082
鱼传尺愫
鱼传尺愫 2021-01-18 04:53

The company I am working for is looking to switch platforms from ColdFusion 8 / Windows to Ruby on Rails / Linux. Our database solution will remain as MSSQL 2008 on Windows.

相关标签:
1条回答
  • 2021-01-18 05:35

    Yes, there will be pain.

    We're running Rails/SQL Server in production at the moment. All of our develompent is done on OS X / linux, and deployed to linux app servers.

    We went with JRuby in the end as connecting via JDBC rather than ODBC was much less painful. JRuby itself is a good platform, but we've had no end of trouble due to quirks with 3rd party gems and plugins which often don't work under JRuby (especially if they've got native extensions).

    There are still holes in the support - paging is still iffy, but kind of works now. From memory there are some quirks around unicode and character encoding as well.

    The only reason SQL Server is used is because that was what the IT infrastructure team mandated. MySQL/Postgres is a much better solution if possible. It all just works.

    0 讨论(0)
提交回复
热议问题