I am trying to connect a Rails app on a Windows machine to SQL Server using activerecord-sqlserver-adapter. I have set up a DSN that works great.
When I try to run a migration (or any database operation), I am informed:
"no such file to load -- odbc"
My database.yaml file has this:
development:
adapter: sqlserver
mode: odbc
dsn: rails_import
I used the one-click ruby installer which I thought would install any gems needed for odbc. Maybe I'm wrong.
How do I get past this error? I have been Googling for an hour with no luck. Thanks in advance.