Skip Menu |

This queue is for tickets about the Class-DBI-Sweet CPAN distribution.

Report information
The Basics
Id: 13220
Status: resolved
Priority: 0/
Queue: Class-DBI-Sweet

People
Owner: PHRED [...] cpan.org
Requestors: dakkar [...] thenautilus.net
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.01
Fixed in: (no value)



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.
That piece of code is deprecated in 0.08, closing this ticket.