rubyからSQL Server 2005 Express接続 キター━━━━(゚∀゚)━━━━ッ!! require 'win32ole' def startADO database cn = WIN32OLE.new("ADODB.Connection") connstr = "Provider=SQLNCLI.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=#{database};Data Source=(local)" cn.Open connstr begin yield cn ensure cn.Close end end module Recordset def [] field self.Fields.Item(field).Value end def []= field,valu