in reply to Using Perl to connect using trusted connection

I have not tried to do this, and the code that I am posting I read somewhere and is untested. With that said, try:
my $dbh = DBI->connect('dbi:ODBC:Test',undef,undef, { RaiseError => 1 + });


Hope that this helps, Cameron

Replies are listed 'Best First'.
Re^2: Using Perl to connect using trusted connection
by Fuism (Beadle) on Sep 13, 2004 at 17:22 UTC
    Cameron, yea I already tried that, it doesnt work. (Error basically state "DBI Connect('TEST,'',... failed: at line 33" I got this same thing from the DBI docs and also an email post on the web. Thanks for the input.. Paofue