in reply to Need help getting environment set up to connect to SQL server

ps. I also can't get in to freetds.org to see the user manual. Do I need to do something to not get the Forbidden messgage? Thanks
  • Comment on Re: Need help getting environment set u to connect to SQL server

Replies are listed 'Best First'.
Re: Re: Need help getting environment set u to connect to SQL server
by JSchmitz (Canon) on May 22, 2002 at 13:58 UTC
    Well this is a rough example since you were not real specific as to what you needed but here goes

    #!/usr/bin/perl -w use DBI; #The database handle my $dbh = DBI->connect( "dbi:SQL:Example", "username", "password" , { RaiseError => 1 });