in reply to Re: Need help getting environment set u to connect to SQL server
in thread Need help getting environment set up to connect to SQL server
#!/usr/bin/perl -w use DBI; #The database handle my $dbh = DBI->connect( "dbi:SQL:Example", "username", "password" , { RaiseError => 1 });
|
|---|