summaryrefslogtreecommitdiff
path: root/libpqpp/selectcommand.h
diff options
context:
space:
mode:
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;