- or download this
$rc = $sth->bind_col($col_num, \$col_variable);
$rc = $sth->bind_columns(@list_of_refs_to_vars_to_bind);
- or download this
$rc = $sth->bind_col($col_num, $col_variable);
$rc = $sth->bind_columns(@list_to_bind);
- or download this
my ($col_num)=@_;
my $col_variable=\$_[1];
- or download this
my @refs=map { \$_ } @_;