Hello, ODP.NET(IronRuby) World!

Posted on 2月 14th, 2013 by cx20

ODP.NET(IronRuby)

ODP.NET(Oracle Data Provider for .NET)は、.NET ベースの Oracle Database 接続用 API である。ODAC(Oracle Data Access Component)と呼ばれるパッケージに含まれる。
.NET 環境での Oracle Database 用データプロバイダとしては、マイクロソフト社が提供する「Microsoft Oracle Client」とオラクル社が提供する「ODP.NET」があるが、現在、「Microsoft Oracle Client」はマイクロソフト社自身が非推奨としており、今後は ODP.NET の使用が推奨されている。

データプロバイダ 説明
System.Data.OracleClient .NET Framework Data Provider for Oracle
Oracle.DataAccess.Client Oracle Data Provider for .NET

ソースコード(IronRuby + ODP.NET + Oracle)

require 'mscorlib'
require 'System'
require 'System.Data'
require 'Oracle.DataAccess'
 
include System
include System::Data
include Oracle::DataAccess::Client
 
conStr = "Data Source=ORCL;User ID=scott;Password=tiger"
sqlStr = "SELECT 'Hello, ODP.NET World!' AS Message FROM DUAL"
 
con = OracleConnection.new(conStr)
cmd = OracleCommand.new(sqlStr, con)
con.Open()
 
reader = cmd.ExecuteReader()
while reader.Read() do
    Console.WriteLine( reader.GetName(0) )
    Console.WriteLine( "---------------------" )
    Console.WriteLine( reader.GetValue(0) )
end
 
reader.Close()
con.Close()

コンパイル方法

C:¥> ir Hello.rb

実行結果

MESSAGE
---------------------
Hello, ODP.NET World!

Tags:

Categories: .NET, IronRuby, ODP.NET

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

WP-SpamFree by Pole Position Marketing