Skip to content
Snippets Groups Projects
Commit 499c1042 authored by Riccardo Maria Bianchi's avatar Riccardo Maria Bianchi :sunny: Committed by Johannes Junggeburth
Browse files

need to move to global helpers

parent 901f277b
No related branches found
No related tags found
1 merge request!327New schema for the GeoModel SQLite database and updated I/O
......@@ -986,6 +986,13 @@ bool GMDBManager::addRecordsToTable(
}
// we build the long string containing all values
std::string values = GeoModelIO::CppHelper::joinVectorStrings(items);
// TODO: replace CppHelper with global Helpers
std::string valuesTest = GeoStrUtils::chainUp(items, ",");
std::cout << "values: " << values << std::endl;
std::cout << "valuesTest: " << valuesTest << std::endl;
sql += " " + values + ";";
if (m_debug)
std::cout << "Query string:" << sql << std::endl; // debug
......
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