を使用して、SQLサーバーを接続し、私はこのページルビーは、Windows認証
http://www.codecapers.com/post/using-ruby-with-sql-server.aspx
私のコードを参照し
DBI.connect('DBI:ADO:Provider=SQLNCLI;Data Source=SQLSERVER001;Integrated Security=True;Initial Catalog=DB001') do | dbh |
# Replace mytable with the name of a table in your database.
dbh.select_all('select top 1000 * from history where type="35" ') do | row |
puts row
end
end
とWindows認証でSQL Serverとルビーを接続しようとします。
任意のアイデア:しかし、私は(初期化されていない一定のDBI :: DBD :: ADO根本的なエラー)エラー
ドライバ 'ADO' を読み込むことができませんですか?
ありがとうございました
これは役に立ちますか? http://gordonotspanish.blogspot.com/2010/02/resolved-uninitialized-constant.html – ScottJShea