On 2001-03-10 01:46:58, [EMAIL PROTECTED] wrote:
>
> $rc = $sth->bind_columns(\@column{qw($columns)});
qw doesn't work like you seem to expect (see perlop(1)). You need
something like:
my @columns = split / /, $columnlist; # or whatever
# ...
$rc = $sth->bind_columns(\@column{@columns});
- ams
- Re: Reusable code for binding columns. Stephen Clouse
- Re: Reusable code for binding columns. Randal L. Schwartz
- Re: Reusable code for binding columns. David Wheeler
- Re: Reusable code for binding columns. Thomas A . Lowery
- Re: Reusable code for binding columns. Abhijit Menon-Sen
- Re: Reusable code for binding columns. Matthew O. Persico
- RE: Reusable code for binding columns. Sterin, Ilya
- Re: Reusable code for binding columns. James Maes
- RE: Reusable code for binding col... Sterin, Ilya
- RE: Reusable code for binding col... Steve Howard
- Re: Reusable code for binding... Abhijit Menon-Sen
- Re: Reusable code for binding... Randal L. Schwartz
- Re: Reusable code for binding columns. Abhijit Menon-Sen
- Re: Reusable code for binding columns. Matthew O. Persico
- Re: Reusable code for binding columns. Michael A. Chase
- Re: Reusable code for binding columns. Michael A. Chase
- Reusable code for binding columns. Steve Howard
- RE: Reusable code for binding columns. Steve Sapovits
