From 939535ce4fa697650c8575df30c96f370af641ec Mon Sep 17 00:00:00 2001 From: Nathan Johnson <njohnson@ebi.ac.uk> Date: Thu, 19 Oct 2006 10:06:18 +0000 Subject: [PATCH] Changed diplayable param to 4 from 3 in store --- modules/Bio/EnsEMBL/DBSQL/AnalysisAdaptor.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/Bio/EnsEMBL/DBSQL/AnalysisAdaptor.pm b/modules/Bio/EnsEMBL/DBSQL/AnalysisAdaptor.pm index 8e2af2a20b..b5ccf750fd 100755 --- a/modules/Bio/EnsEMBL/DBSQL/AnalysisAdaptor.pm +++ b/modules/Bio/EnsEMBL/DBSQL/AnalysisAdaptor.pm @@ -334,6 +334,7 @@ sub store { } + my $rows_inserted = 0; my $sth; @@ -434,12 +435,13 @@ sub store { if( defined( $analysis->description() ) || defined( $analysis->display_label() )) { + $sth = $self->prepare( "INSERT IGNORE INTO analysis_description (analysis_id, display_label, description, displayable) VALUES (?,?,?,?)"); $sth->bind_param(1,$dbID,SQL_INTEGER); $sth->bind_param(2,$analysis->display_label(),SQL_VARCHAR); $sth->bind_param(3,$analysis->description,SQL_LONGVARCHAR); - $sth->bind_param(3,$analysis->displayable,SQL_TINYINT); + $sth->bind_param(4,$analysis->displayable,SQL_TINYINT); $sth->execute(); $sth->finish(); -- GitLab