diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-06-05 18:53:22 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-06-05 18:53:22 +0100 |
commit | 19609c41b15a818df30508576f50fc0eddc11636 (patch) | |
tree | b7b36a9e69689fd2be7c0660728af59eacb02d10 /libpqpp/pq-selectbase.h | |
parent | Add wrappers for PQgetvalue and PQgetlength in column to simplify access (diff) | |
download | libdbpp-postgresql-19609c41b15a818df30508576f50fc0eddc11636.tar.bz2 libdbpp-postgresql-19609c41b15a818df30508576f50fc0eddc11636.tar.xz libdbpp-postgresql-19609c41b15a818df30508576f50fc0eddc11636.zip |
Support fetching data in binary format (no numeric, datetime, interval support yet)
Diffstat (limited to 'libpqpp/pq-selectbase.h')
-rw-r--r-- | libpqpp/pq-selectbase.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libpqpp/pq-selectbase.h b/libpqpp/pq-selectbase.h index a6b199a..804535d 100644 --- a/libpqpp/pq-selectbase.h +++ b/libpqpp/pq-selectbase.h @@ -5,17 +5,19 @@ #include <selectcommand.h> namespace PQ { + class CommandOptions; class SelectBase : public DB::SelectCommand { friend class Column; protected: - SelectBase(const std::string & sql); + SelectBase(const std::string & sql, const PQ::CommandOptions * pqco); ~SelectBase(); void createColumns(PGresult *); int nTuples, tuple; PGresult * execRes; + bool binary; }; } |