mirror of
https://github.com/pocoproject/poco.git
synced 2025-12-30 15:02:02 +01:00
21 lines
401 B
C++
21 lines
401 B
C++
#ifndef SQLPARSER_EXECUTE_STATEMENT_H
|
|
#define SQLPARSER_EXECUTE_STATEMENT_H
|
|
|
|
#include "SQLStatement.h"
|
|
|
|
namespace hsql {
|
|
|
|
// Represents SQL Execute statements.
|
|
// Example: "EXECUTE ins_prep(100, "test", 2.3);"
|
|
struct SQLParser_API ExecuteStatement : SQLStatement {
|
|
ExecuteStatement();
|
|
~ExecuteStatement() override;
|
|
|
|
char* name;
|
|
std::vector<Expr*>* parameters;
|
|
};
|
|
|
|
} // namespace hsql
|
|
|
|
#endif
|