| 92 | } |
| 93 | |
| 94 | void PreparedStatement::addParameter(const std::string& name, Value* value) { |
| 95 | parameterMap.insert({name, std::make_shared<Value>(*value)}); |
| 96 | } |
| 97 | |
| 98 | void PreparedStatement::setParameter(const std::string& name, Value value) { |
| 99 | if (!parameterMap.contains(name)) { |
no test coverage detected