0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-16 21:04:15 +08:00

Add operator() to allow query with callback

This commit is contained in:
Frank Park 2017-04-11 14:47:37 -04:00
parent 628b0bbaff
commit f3b9442c9f

View File

@ -57,6 +57,18 @@ namespace sqlpp
}
}
pool_connection(const pool_connection&) = delete;
pool_connection(pool_connection&& other) : _impl(std::move(other._impl)), origin(other.origin)
{
}
pool_connection& operator=(const pool_connection&) = delete;
pool_connection& operator=(pool_connection&& other)
{
_impl = std::move(other._impl);
origin = other.origin;
return *this;
}
template<typename... Args>
auto operator()(Args&&... args) -> decltype(_impl->args(std::forward<Args>(args)...))
{
@ -81,16 +93,10 @@ namespace sqlpp
return _impl->prepare(t);
}
pool_connection(const pool_connection&) = delete;
pool_connection(pool_connection&& other) : _impl(std::move(other._impl)), origin(other.origin)
template<typename Query, typename Lambda>
void operator()(Query query, Lambda callback)
{
}
pool_connection& operator=(const pool_connection&) = delete;
pool_connection& operator=(pool_connection&& other)
{
_impl = std::move(other._impl);
origin = other.origin;
return *this;
query_task<Connection_pool, Query, Lambda>(*origin, query, callback)();
}
};
}