Skip to content
Snippets Groups Projects
Commit 9fb86fc6 authored by Arne Stabenau's avatar Arne Stabenau
Browse files

update function was throwing, still not working 100percent but not throwing any more

parent a192f141
No related branches found
No related tags found
No related merge requests found
......@@ -470,14 +470,14 @@ sub update {
"SET created = ?, logic_name = ?, db = ?, db_version = ?, db_file = ?, ".
" program = ?, program_version = ?, program_file = ?, ".
" parameters = ?, module = ?, module_version = ?, ".
" gff_source = ?, gff_feature = ?, description = ? " .
" gff_source = ?, gff_feature = ? " .
"WHERE analysis_id = ?");
$sth->execute
($a->created, $a->logic_name, $a->db, $a->db_version, $a->db_file,
$a->program, $a->program_version, $a->program_file,
$a->parameters, $a->module, $a->module_version,
$a->gff_source, $a->gff_feature,$a->description,
$a->gff_source, $a->gff_feature,
$a->dbID);
$sth->finish();
......
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