#ifndef PQ_BULKSELECTCOMMAND_H #define PQ_BULKSELECTCOMMAND_H #include "pq-selectbase.h" #include "pq-prepared.h" #include #include namespace PQ { class Connection; class Column; class BulkSelectCommand : public SelectBase, public PreparedStatement { public: BulkSelectCommand(Connection *, const std::string & sql, const DB::CommandOptions *); bool fetch() override; void execute() override; private: mutable bool executed; }; } #endif