Read more

Connecting the "sequel" gem to MSSQL via ODBC

Deleted user #6
March 23, 2012Software engineer

After you configured your ODBC describe in

Illustration web development

Do you need DevOps-experts?

Your development team has a full backlog? No time for infrastructure architecture? Our DevOps team is ready to support you!

  • We build reliable cloud solutions with Infrastructure as code
  • We are experts in security, Linux and databases
  • We support your dev team to perform
Read more Show archive.org snapshot

you can connect with sequel Show archive.org snapshot :

require "rubygems"
require "sequel"
db = Sequel.odbc("MyODBCDatabaseName", :user => "my_user_name", :password => "my_password")
db["select top 5 name from user"].collect
Posted to makandra dev (2012-03-23 10:40)