mirror of
https://github.com/rbock/sqlpp11.git
synced 2026-04-30 07:59:19 -05:00
Implemented parameter index determination
This commit is contained in:
@@ -74,6 +74,13 @@ namespace sqlpp
|
||||
like_t& operator=(like_t&&) = default;
|
||||
~like_t() = default;
|
||||
|
||||
size_t _set_parameter_index(size_t index)
|
||||
{
|
||||
index = set_parameter_index(_operand, index);
|
||||
index = set_parameter_index(_pattern, index);
|
||||
return index;
|
||||
}
|
||||
|
||||
template<typename Db>
|
||||
void serialize(std::ostream& os, Db& db) const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user