Programming/Etc.
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_..
Ruby App. CD-ROM 열기
Ruby App. CD-ROM 열기
2007.05.06이하 내용은 구글의 루비 그룹에서 발췌한 내용입니다. ^ ^ CD-ROM을 여는 흥미로운 내용이 있어서 가져와봤네용~ Windows App.를 개발하실 일 있을때 사용하시면 될 것 같습니다. On May 5, 8:15 pm, "Eder Quiñones" wrote: > Hi, anyone knows what is the problem with this function, i believe i did > everything right, but it just does not open the cd-rom, maybe the > problem is in the part "InvokeVerb". Any help would be highly > appreciated. > > def ejectDrives > > @wb..
루비(Ruby) 로 초간단 프로그램 작성
루비(Ruby) 로 초간단 프로그램 작성
2007.04.29너무 간단해서 공부에 도움은 안되지만 -_ -;; 루비로 아직 할줄 아는게 없어서 99단만 한번 짜봤다.. for i in 2..9 print i, "단\n" for j in 1..9 print i, " * ", j, " = ", i * j, "\n" end print "\n" end 역시나 짧은 코드 -_ ;; '99단.rb' 처럼 파일로 저장한 후 ruby 99단.rb위 코멘드로 실행해 보자~