blob: 9d4ff578b3dcef696eaf2c2110bdb40704ee3c7b (
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
|
#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);
void createColumns();
unsigned int nTuples, tuple;
ResultPtr execRes;
bool binary;
};
}
#endif
|