blob: 2a01ede7ab1d1198a0468a6b625b3c08e53e7cf1 (
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 <libpq-fe.h>
#include <selectcommand.h>
#include "pq-command.h"
namespace PQ {
class SelectBase : public DB::SelectCommand {
friend class Column;
protected:
SelectBase(const std::string & sql, const PQ::CommandOptionsCPtr & pqco);
~SelectBase();
void createColumns(PGresult *);
int nTuples, tuple;
PGresult * execRes;
bool binary;
};
}
#endif
|