diff options
Diffstat (limited to 'libpqpp/pq-command.h')
-rw-r--r-- | libpqpp/pq-command.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libpqpp/pq-command.h b/libpqpp/pq-command.h index 989844c..2431639 100644 --- a/libpqpp/pq-command.h +++ b/libpqpp/pq-command.h @@ -15,10 +15,12 @@ namespace PQ { CommandOptions(std::size_t, const DB::CommandOptionsMap &); CommandOptions(std::size_t hash, unsigned int fetchTuples = 35, - bool useCursor = true); + bool useCursor = true, + bool fetchBinary = false); unsigned int fetchTuples; bool useCursor; + bool fetchBinary; }; class Command : public virtual DB::Command { |