diff options
Diffstat (limited to 'libpqpp/pq-command.cpp')
-rw-r--r-- | libpqpp/pq-command.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libpqpp/pq-command.cpp b/libpqpp/pq-command.cpp index af203cc..a6259df 100644 --- a/libpqpp/pq-command.cpp +++ b/libpqpp/pq-command.cpp @@ -25,6 +25,15 @@ PQ::Command::~Command() } } +PQ::CommandOptions::CommandOptions(std::size_t hash, + unsigned int ft, + bool uc) : + DB::CommandOptions(hash), + fetchTuples(ft), + useCursor(uc) +{ +} + AdHocFormatter(PQCommandParamName, "$%?"); void PQ::Command::prepareSql(std::stringstream & psql, const std::string & sql) const |