summaryrefslogtreecommitdiff
path: root/libpqpp/pq-selectbase.h
blob: 19bef7a31a6dd951ace4a019d9de5e656e5881eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef PQ_SELECTBASE_H
#define PQ_SELECTBASE_H

#include "pq-command.h"
#include <libpq-fe.h>
#include <selectcommand.h>
#include <string>

namespace PQ {
	class SelectBase : public DB::SelectCommand {
		friend class Column;

	protected:
		SelectBase(const std::string & sql, const PQ::CommandOptionsCPtr & pqco);
		~SelectBase();

		void createColumns(PGresult *);

		unsigned int nTuples, tuple;
		PGresult * execRes;
		bool binary;
	};
}

#endif