fionbarr has asked for the wisdom of the Perl Monks concerning the following question:
Which is preferred and why, please?$sth->bind->columns(\$server); while ( $sth->fetch ) { $sth->bind->columns(undef, \$server); while ( $sth->fetch ) {
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: DBI bind_columns
by roboticus (Chancellor) on Sep 16, 2014 at 17:56 UTC | |
by fionbarr (Friar) on Sep 16, 2014 at 19:06 UTC | |
|
Re: DBI bind_columns
by Tux (Canon) on Sep 17, 2014 at 06:28 UTC | |
by Anonymous Monk on Sep 17, 2014 at 15:43 UTC |