From 0c88d4e3f988a8ae82e8304288b8ed9f7c354648 Mon Sep 17 00:00:00 2001
From: Nathan Johnson <njohnson@ebi.ac.uk>
Date: Thu, 9 Sep 2010 14:31:59 +0000
Subject: [PATCH] added finish to external_db fetch in store method

---
 modules/Bio/EnsEMBL/DBSQL/DBEntryAdaptor.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/Bio/EnsEMBL/DBSQL/DBEntryAdaptor.pm b/modules/Bio/EnsEMBL/DBSQL/DBEntryAdaptor.pm
index 68edddc686..366d3eea59 100644
--- a/modules/Bio/EnsEMBL/DBSQL/DBEntryAdaptor.pm
+++ b/modules/Bio/EnsEMBL/DBSQL/DBEntryAdaptor.pm
@@ -364,10 +364,10 @@ sub store {
 
     $sth->bind_param( 1, $exObj->dbname(),  SQL_VARCHAR );
     $sth->bind_param( 2, $exObj->release(), SQL_VARCHAR ) if defined $exObj->release();
-
     $sth->execute();
 
     ($dbRef) = $sth->fetchrow_array();
+	$sth->finish();
 
     if ( !$dbRef ) {
       throw(
-- 
GitLab