Skip to content
Snippets Groups Projects
Commit 859d337f authored by Jessica Severin's avatar Jessica Severin
Browse files

changed INSERT syntax to be more SQL compliant

parent 519e47d0
No related branches found
No related tags found
No related merge requests found
......@@ -327,7 +327,7 @@ sub _create_new_for_analysis_id {
my $sql;
$sql = "INSERT ignore INTO analysis_stats SET analysis_id='$analysis_id' ";
$sql = "INSERT ignore INTO analysis_stats (analysis_id) VALUES ($analysis_id)";
#print("$sql\n");
my $sth = $self->prepare($sql);
$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