Ruby를 이용한 Directory 보는 구문
Ruby를 이용한 Directory 보는 구문
2007.05.19# directory access # list all files but .*/*~/*.o dirp = Dir.open(".") for f in dirp case f when /^\./, /~$/, /\.o/ # do not print else print f, "\n" end end dirp.close PHP 할때같은 기분이 든다. 상당히 짧은 코드 정규표현식도 바로 사용하는 것이 참 마음에 든다. .*과 *~, *.o는 보안상 제외시킨다.
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) 로 초간단 프로그램 작성
루비(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위 코멘드로 실행해 보자~