|
Project Information
Links
|
A set of tools and conventions for using mssql 2005 with RailsInstallationruby script/plugin install http://rails-mssql-tools.googlecode.com/svn/trunk/ UsageThe objective of this plugin is to: - implement a conventional method for migrating mssql procs, views, and triggers.
- for legacy mssql databases, resolve camel-cased attributes to Rails' conventional underscored names, allowing developers to refer to model object attributes in the conventional manner:
- model.user_name vs. model.UserName (camel-case is a common naming convention
in the MS dev community)
- Camel-case resolution assumptions
- the legacy db consistently uses camel-casing for column names (not a mix of
camel-case and underscore)
|