summaryrefslogtreecommitdiff
path: root/libpqpp/selectcommand.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2015-04-29 20:43:50 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2015-04-29 20:43:50 +0100
commit720eb9e16eab13c2b5b538116da29bf43e25c450 (patch)
tree60af7f180deb60b3f79f2b481ee8595d3d8e0e7c /libpqpp/selectcommand.h
parentIgnore Vim swap files (diff)
downloadlibdbpp-postgresql-720eb9e16eab13c2b5b538116da29bf43e25c450.tar.bz2
libdbpp-postgresql-720eb9e16eab13c2b5b538116da29bf43e25c450.tar.xz
libdbpp-postgresql-720eb9e16eab13c2b5b538116da29bf43e25c450.zip
Centralize all the column reference storage logic
Diffstat (limited to 'libpqpp/selectcommand.h')
-rw-r--r--libpqpp/selectcommand.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/libpqpp/selectcommand.h b/libpqpp/selectcommand.h
index f4774d7..daa2707 100644
--- a/libpqpp/selectcommand.h
+++ b/libpqpp/selectcommand.h
@@ -16,16 +16,11 @@ namespace PQ {
bool fetch();
void execute();
- const DB::Column& operator[](unsigned int) const;
- const DB::Column& operator[](const Glib::ustring&) const;
- unsigned int columnCount() const;
- unsigned int getOrdinal(const Glib::ustring&) const;
+
private:
void fetchTuples();
mutable bool executed;
mutable bool txOpened;
- std::vector<Column *> fields;
- std::map<Glib::ustring, Column *> fieldsName;
int nTuples, tuple;
PGresult * execRes;