in reply to Re: DBI continuing execution after a warning/informational message
in thread DBI continuing execution after a warning/informational message
googling, i got an option for prepare statement.while($sth->odbc_more_results) { print "Restore outputs $DBI:errstr \n"; }
this seems to keep the connection on (basically to use with temporary table creation on prepare statement, otherwise temp tables are unaccessable)my $sth = $db->prepare( $sql, { odbc_exec_direct => 1})
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: DBI continuing execution after a warning/informational message
by mje (Curate) on Jan 20, 2010 at 16:28 UTC |