in reply to Re: connection issues to MS SQL Server
in thread connection issues to MS SQL Server
is this what you were refering to? I'm sorry I'm just feeling really lost right now!!use strict; use DBI; $| = 1; my $server_name = 'rb_intra_sqldev'; my $database_name = 'RMBSAnalytics'; my $DSN = "DRIVER={SQL Server};Database=$database_name;Server=$server_ +name;uid=datapull;pwd=datapull"; my $dbh = DBI->connect("dbi:ODBC:$DSN", undef, undef) || die "Couldn't + open database: $DBI::errstr\n"; $dbh->disconnect();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: connection issues to MS SQL Server
by roboticus (Chancellor) on Aug 09, 2009 at 21:17 UTC | |
by mje (Curate) on Aug 11, 2009 at 09:33 UTC |