program language

Ubuntu 9.04でObjective-Cを試してみる

Objective-Cのインストール % sudo aptitude install gobjc libgnustep-base-devHello.h #ifndef HELLO_H_ #define HELLO_H_ #import <Foundation/NSObject.h> #import <Foundation/NSString.h> @interface CHello :NSObject { @private NSString *m_message; } - (id) init:(const char *) message_; - (vo</foundation/nsstring.h></foundation/nsobject.h>…

SQL Server 2005 Expressに接続してみるテスト(その3)

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=#{dat…