Skip to content

Commit

Permalink
sql: use single quoted strings #1436
Browse files Browse the repository at this point in the history
  • Loading branch information
matlabbe committed Feb 1, 2025
1 parent 6aa188d commit fcfadfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions corelib/src/DBDriver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,7 @@ void DBDriver::addInfoAfterRun(
<< processMemUsed << ","
<< databaseMemUsed << ","
<< dictionarySize << ","
"\"" << param.c_str() << "\");";
"'" << param.c_str() << "');";
}
else
{
Expand All @@ -1189,7 +1189,7 @@ void DBDriver::addInfoAfterRun(
<< processMemUsed << ","
<< databaseMemUsed << ","
<< dictionarySize << ","
"\"" << param.c_str() << "\");";
"'" << param.c_str() << "');";
}
}
else
Expand Down

0 comments on commit fcfadfe

Please sign in to comment.