Ruby-DBI to query MS SQL 2003 ? (newb)

J

Josiah Ritchie

I'm trying to write a script to pull data out of a MS SQL 2003
database and manipulate it a bit. I've found ActiveRecord to be slim
on examples outside of the Rails environment.

I've tried lots of variations on the name of the driver; mssql, msql,
mysql examples.

dbh =3D DBI.connect("dbi:msql:wbctest:chad", "testuser", "testpass")

I've dug into the dbi code some, found that it is case-insensitive
and, I believe, confirmed that msql is the appropriate one for my
needs and that it exists under the DBD directory.

Maybe I'm making this harder than it needs to be? That would be
common. I will gladly accept corrections in my direction of attack.

JSR/
 
J

jeem

I think you want something more like this:

DBI:ADO:provider=SQLOLEDB;Data Source=YOURSERVER;Initial
Catalog=YOURDB;User Id=YOU;Password=YOURPASSWORD;

You may be able to leave the user and pw out of the above string if
you include them in the 2nd and 3rd args to connect.

You'll probably need to download the ADO adapter and add it to your
Ruby install. For some reason, it doesn't come with the windows Ruby
installer, although DBI does.

You can get it from
http://rubyforge.org/frs/download.php/655/ruby-dbi-all-0.0.23.tar.gz.
Just pull the file "ADO.db" out and stick it in
<RUBYPATH>\lib\ruby\site_ruby\1.8\DBD\ADO. (You'll have to create the
ADO directory.)

Jim
 
J

Josiah Ritchie

thanks, I'll work on that.

I think you want something more like this:

DBI:ADO:provider=3DSQLOLEDB;Data Source=3DYOURSERVER;Initial
Catalog=3DYOURDB;User Id=3DYOU;Password=3DYOURPASSWORD;

You may be able to leave the user and pw out of the above string if
you include them in the 2nd and 3rd args to connect.

You'll probably need to download the ADO adapter and add it to your
Ruby install. For some reason, it doesn't come with the windows Ruby
installer, although DBI does.

You can get it from
http://rubyforge.org/frs/download.php/655/ruby-dbi-all-0.0.23.tar.gz.
Just pull the file "ADO.db" out and stick it in
<RUBYPATH>\lib\ruby\site_ruby\1.8\DBD\ADO. (You'll have to create the
ADO directory.)

Jim
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top