| 236 | |
| 237 | |
| 238 | void OMSFileLoad::handleQueryMetaInfo_(SQLite::Statement& query, |
| 239 | MetaInfoInterface& info, |
| 240 | Key parent_id) |
| 241 | { |
| 242 | query.bind(":id", parent_id); |
| 243 | while (query.executeStep()) |
| 244 | { |
| 245 | DataValue value = makeDataValue_(query); |
| 246 | info.setMetaValue(query.getColumn("name").getString(), value); |
| 247 | } |
| 248 | query.reset(); // get ready for new executeStep() |
| 249 | } |
| 250 | |
| 251 | |
| 252 | void OMSFileLoad::handleQueryAppliedProcessingStep_( |
nothing calls this directly
no test coverage detected