in reply to DBI and bind_columns again
$sql->bind_columns(\($id,$ip,$port,$country)); $sql->execute || die($sql->errstr);
Have you tried putting the bind_columns after the execute, as the documentation recommends:
"For maximum portability between drivers, bind_columns() should be called after execute() and not before."
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: DBI and bind_columns again
by gemoroy (Beadle) on May 01, 2009 at 09:56 UTC |