When you assign the result of qw to a scalar, it will get the last element of the list.
$ perl -le '$x = qw(a b c); print $x' c $ perl -le '$x = q(a b c); print $x' a b c
Replace qw() with q() and all will be well.
In reply to Re: Problem loading txt file into mysql
by rnahi
in thread Problem loading txt file into mysql
by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |