Hi all,
i’m beginner in rails world…i try to connect my rails application on
a db sql server 6.5 without success, ca you help me?
i try odbc driver, jtds e activerecord-sqlserver-adapter but
nothing…
what are the right gems or the right sequence procedure?
thx
Prinx
I only know about SQLServer 2005 and 2008, not 6.5. Anyway, here is a
list of things I had to do to get a project working with 2005 using
Ruby 1.8.6, Rails 2.3.5 and Mongrel as the web server. You might need
to skip/change some of the steps. I hope it helps:
- Install Ruby (1.8.6): Download Ruby
- Install rubygems:
a. Download RubyGems | RubyGems.org | your community gem host (zip version)
b. Unpack to a directory and cd there
c. ruby setup.rb
- Install rails: gem install rails –v=2.3.5
- Install mongrel: gem install mongrel
- Install mongrel service: gem install mongrel_service
- Install SQL Server adapter: gem install activerecord-sqlserver-
adapter
- Install ODBC gem: gem install odbc-rails
- Install authentication gem: gem install authlogic
- Install encryption gem: gem install attr_encrypted
- Install SQL Server Management utility (from Microsoft)
- Create SQL Server DB
- Create login in SQL Server
- Create DB user
- Create DSN in Windows:
a. Control Panel → Adminstrative Tasks → Data Sources (ODBC)
b. Click on System DSN → Add
c. Select type SQL Server
i. Name: Give it a name
ii. Description: Give it a description
iii. Server: Server name (whatever name you can see in the SQL
Server Management Utility)
iv. Use SQL Authentication
Ok, i’ll try yours advice, i hope to do it…
I will let you know
Thank’s
Prinx
Forgot to add database.yml configuration. Here it is:
your_environment_here:
adapter: sqlserver
mode: odbc
dsn: your_dsn_name_here
username: your_username_here
password: your_password_here
There is no need to use host or port parameter since we’re using a
DSN.