line |
true |
false |
branch |
127
|
0 |
0 |
unless my $sth = $connection->dbh->prepare($self->sql) |
145
|
0 |
0 |
unless $sth->execute(@_) |
159
|
0 |
0 |
if ($bind_results) |
165
|
0 |
0 |
ref $bind_results eq 'ARRAY' ? : |
|
0 |
0 |
ref $bind_results eq 'HASH' ? : |
|
0 |
0 |
unless $sth->bind_columns(ref $bind_results eq 'HASH' ? \@{$bind_results;}{@{$$sth{'NAME_lc'};}} : (ref $bind_results eq 'ARRAY' ? \@{$bind_results;}[0 .. $#{$$sth{'NAME_lc'};}] : ())) |
181
|
0 |
0 |
unless eval {
do {
$sth->bind_param_inout(':' . $_, \$$params{$_}, 32000) foreach (keys %$params);
$self
}
} |
198
|
0 |
0 |
unless eval {
do {
$sth->bind_param(':' . $_, $$params{$_}) foreach (keys %$params);
$self
}
} |
218
|
0 |
0 |
if (defined $bind_params) |
219
|
0 |
0 |
defined $_ ? : |
|
0 |
0 |
ref $_ eq 'CODE' ? : |