Skip to content
Snippets Groups Projects
Commit ccefe526 authored by Magali Ruffier's avatar Magali Ruffier
Browse files

do not run only on pre databases

parent 681a74a9
No related branches found
No related tags found
No related merge requests found
......@@ -173,8 +173,7 @@ my %data;
}
if (defined $dbtype) {
if ($dbtype eq 'pre') {
my $sth =
my $sth =
$dbh->prepare( 'SELECT db_name, logic_name, '
. 'description, display_label, displayable, data '
. 'FROM analysis_description ad, species s, analysis_web_data aw '
......@@ -184,18 +183,15 @@ my %data;
. 'aw.species_id = s.species_id AND '
. 'aw.db_type = "' . $dbtype . '" AND '
. 'db_name =?' );
$sth->execute($species) ;
my ( $db_name, $logic_name, %hash) ;
$sth->bind_columns( \( $db_name, $logic_name,
$hash{'description'}, $hash{'display_label'},
$hash{'displayable'}, $hash{'web_data'} ) );
while ( $sth->fetch() ) {
$data{$db_name}{$logic_name} = { %{ \%hash } };
}
$sth->execute($species) ;
my ( $db_name, $logic_name, %hash) ;
$sth->bind_columns( \( $db_name, $logic_name,
$hash{'description'}, $hash{'display_label'},
$hash{'displayable'}, $hash{'web_data'} ) );
while ( $sth->fetch() ) {
$data{$db_name}{$logic_name} = { %{ \%hash } };
}
}
$dbh->disconnect();
}
......
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