in reply to dbi bind_columns with an array: fail

I think problem is because you passing list of variables to bind_columns method, and it expects the list of references to variables, like that:

bind_columns(\$selmin, \$selmax);

Replies are listed 'Best First'.
Re^2: dbi bind_columns with an array: fail
by ig (Vicar) on Oct 18, 2010 at 05:30 UTC

    In which case $sth->bind_columns( map {\$_} @sogs ); might solve the problem?