ExportStatement.h 470 B

12345678910111213141516171819202122
  1. #ifndef SQLPARSER_EXPORT_STATEMENT_H
  2. #define SQLPARSER_EXPORT_STATEMENT_H
  3. #include "ImportStatement.h"
  4. #include "SQLStatement.h"
  5. namespace hsql {
  6. // Represents SQL Export statements.
  7. struct ExportStatement : SQLStatement {
  8. ExportStatement(ImportType type);
  9. ~ExportStatement() override;
  10. // ImportType is used for compatibility reasons
  11. ImportType type;
  12. char* filePath;
  13. char* schema;
  14. char* tableName;
  15. };
  16. } // namespace hsql
  17. #endif