You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
503 B

  1. #pragma once
  2. #include "Statement.h"
  3. #include "StatementBuilder.h"
  4. #include <string>
  5. #include <vector>
  6. namespace db {
  7. namespace statements {
  8. namespace builder {
  9. class DeleteStatementBuilder : public StatementBuilder {
  10. public:
  11. explicit DeleteStatementBuilder() : StatementBuilder() {}
  12. DeleteStatementBuilder &table(const std::string &table);
  13. DeleteStatementBuilder &where(const std::string &where);
  14. DeleteStatementBuilder &close();
  15. };
  16. }
  17. }
  18. }