MCPcopy Create free account
hub / github.com/SOCI/soci / add_query_parameter

Method add_query_parameter

src/core/session.cpp:511–521  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

509}
510
511void session::add_query_parameter(std::string name, std::string value)
512{
513 if (isFromPool_)
514 {
515 pool_->at(poolPosition_).add_query_parameter(std::move(name), std::move(value));
516 }
517 else
518 {
519 logger_.add_query_parameter(std::move(name), std::move(value));
520 }
521}
522
523std::string session::get_last_query() const
524{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected