SqlStatement Struct Reference
A statement for a SQL query. These are generated by the QueryOptions class to control how messages get queried from the log. More...
#include <SqlStatement.hh>
Public Member Functions | |
void | Append (const SqlStatement &_other) |
Append another SQL statement onto the end of this one. _other.statement will be added to the end of this object's statement string, and _other's parameters will be added to this object's vector of parameters. More... | |
Public Attributes | |
std::vector< SqlParameter > | parameters |
Parameters for the statement. More... | |
std::string | statement |
Text of the statement. More... | |
Detailed Description
A statement for a SQL query. These are generated by the QueryOptions class to control how messages get queried from the log.
Member Function Documentation
◆ Append()
void Append | ( | const SqlStatement & | _other | ) |
Append another SQL statement onto the end of this one. _other.statement will be added to the end of this object's statement string, and _other's parameters will be added to this object's vector of parameters.
- Parameters
-
[in] _other Another SQL statement.
Member Data Documentation
◆ parameters
std::vector<SqlParameter> parameters |
Parameters for the statement.
◆ statement
std::string statement |
Text of the statement.
The documentation for this struct was generated from the following file: