diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-04-24 15:43:07 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-04-24 15:43:07 +0100 |
commit | 5886b037ecf017819406a11588b627d16e01e38f (patch) | |
tree | b73b1c435436e039c4f3eb402a78382c629920ed /libpqpp/pq-column.h | |
parent | Rename SelectCommand to CursorSelectCommand (diff) | |
download | libdbpp-postgresql-5886b037ecf017819406a11588b627d16e01e38f.tar.bz2 libdbpp-postgresql-5886b037ecf017819406a11588b627d16e01e38f.tar.xz libdbpp-postgresql-5886b037ecf017819406a11588b627d16e01e38f.zip |
Introduce select base for different kinds of select
Diffstat (limited to 'libpqpp/pq-column.h')
-rw-r--r-- | libpqpp/pq-column.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libpqpp/pq-column.h b/libpqpp/pq-column.h index 99a37fb..f01ee9a 100644 --- a/libpqpp/pq-column.h +++ b/libpqpp/pq-column.h @@ -5,16 +5,16 @@ #include <libpq-fe.h> namespace PQ { - class CursorSelectCommand; + class SelectBase; class Column : public DB::Column { public: - Column(const CursorSelectCommand *, unsigned int field); + Column(const SelectBase *, unsigned int field); bool isNull() const override; void apply(DB::HandleField &) const override; protected: - const CursorSelectCommand * sc; + const SelectBase * sc; const Oid oid; }; } |