in reply to Re^5: MSSQL/Perl
in thread Re^4: MSSQL/Perl
below is the error I get.#!/opt/perl/5.8.0/bin/perl use lib "/home/myhome/lib"; use DBI; use DBD::ODBC; @ary = DBI->installed_drivers; print "@ary"; my ($data_source, $database, $userid, $password) = qw( db_1:blah.pp.ns.net;5000 db_1 read readP); my $connect_string = "driver={SQL Server};Server=$data_source;Database +=$database;UID=$userid;PWD=$password"; my $dbh = DBI ->connect ( "$connect_string" ) or die $DBI::errstr; my $sql = "select getdate()"; my $sth = $dbh->prepare ( $sql ); $sth->execute; $dbh->disconnect ();
DBI version 1.609 required--this is only version 1.35 at /opt/perl/5.8 +.0/lib/Exporter/Heavy.pm line 221. Compilation failed in require at mssql.pl line 4. BEGIN failed--compilation aborted at mssql.pl line 4.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: MSSQL/Perl
by mje (Curate) on Oct 02, 2013 at 16:02 UTC | |
by tma2620 (Initiate) on Oct 03, 2013 at 02:01 UTC |