Ruby, ADO 이용한 SQL Server 연결
Ruby, ADO 이용한 SQL Server 연결
2007.05.07RUBY로 win32 OLE 를 이용해 ADO 연결하는 방법을 아래 소개합니다. 출처 : http://rubyonwindows.blogspot.com/search/label/sqlserver require 'win32ole' class SqlServer # This class manages database connection and queries attr_accessor :connection, :data, :fields def initialize @connection = nil @data = nil end def open # Open ADO connection to the SQL Server database connection_string = "Provider=SQLOLEDB.1;" connection_..