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-cursorselectcommand.cpp | |
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-cursorselectcommand.cpp')
-rw-r--r-- | libpqpp/pq-cursorselectcommand.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libpqpp/pq-cursorselectcommand.cpp b/libpqpp/pq-cursorselectcommand.cpp index fe097a5..ab21f66 100644 --- a/libpqpp/pq-cursorselectcommand.cpp +++ b/libpqpp/pq-cursorselectcommand.cpp @@ -9,10 +9,7 @@ PQ::CursorSelectCommand::CursorSelectCommand(Connection * conn, const std::strin PQ::Command(conn, sql, no), executed(false), txOpened(false), - nTuples(0), - tuple(0), fTuples(35), - execRes(NULL), s_declare(mkdeclare()), s_fetch(mkfetch()), s_close(mkclose()) |