Skip to content
Snippets Groups Projects
Commit cd1d9da9 authored by Riccardo Maria Bianchi's avatar Riccardo Maria Bianchi :sunny:
Browse files

CI: add sqlite3 dev package

parent abe083ec
No related branches found
No related tags found
1 merge request!10Drop the use of Qt5 in GeoModelIO
Pipeline #1687947 failed
......@@ -3,7 +3,7 @@ stages:
- build
before_script:
- yum -y install cmake glibc-devel sqlite which
- yum -y install cmake glibc-devel sqlite libsqlite3-dev which
- set +e && source CI/setup_lcg.sh; set -e
variables:
......
......@@ -518,7 +518,7 @@ bool GMDBManager::addListOfRecordsToTable(const std::string tableName, const std
std::vector<std::string> items;
for ( const std::string& item : rec) {
items.push_back('"' + item + '"');
items.push_back("'" + item + "'");
}
// QString values = items.join(",");
std::string values = joinVectorStrings(items, ",");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment