Oops. Wrong operator. You want ==.if (scalar @data = scalar @table) {
And use of scalar is unnecessary — though it doesn't hurt.
if (@data == @table) {
In reply to Re^2: DBI SQL adding array of values
by bart
in thread DBI SQL adding array of values
by pmtolk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |