Skip to content
Snippets Groups Projects
Commit fcfce4d6 authored by Andy Yates's avatar Andy Yates
Browse files

Bugfix to _list_dbIDs() when it was using the generic bind params method from...

Bugfix to _list_dbIDs() when it was using the generic bind params method from DBAdaptor however we never went through generic_fetch() so params were never bound.
parent 2fd8b404
No related branches found
No related tags found
No related merge requests found
......@@ -293,7 +293,7 @@ WHERE cs.species_id = ?
my $sth = $self->prepare($sql);
if ($join_with_cs) {
$self->bind_param_generic_fetch( $self->species_id(), SQL_INTEGER );
$sth->bind_param( 1, $self->species_id(), SQL_INTEGER );
}
eval { $sth->execute() };
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment