in reply to Multiple records fetches issue using DBD::ODBC in Perl
Your code lacks error checking. Start by changing the connect call to this:
my $dbh = DBI->connect("dbi:ODBC:DSN=sql_test", $database_user, $datab +ase_pass, { RaiseError => 1 });
Alexander
|
|---|