Subject: | _search skips defined-but-false bind values |
the _search function has the following line:
while ( my $value = shift(@$bind) ) {
that skips false bind values, causing errors.
I changed it to
my $value;
while ( defined ( $value = shift(@$bind) ) ) {
and everything worked.