9 #ifndef _litesql_postgresql_hpp
10 #define _litesql_postgresql_hpp
22 class PostgreSQL :
public Backend {
24 mutable bool transaction;
27 class Result :
public Backend::Result {
30 Result(PGresult * r) : res(r) {}
32 virtual size_t fieldNum()
const;
33 virtual Record fields()
const;
34 virtual size_t recordNum()
const;
35 virtual Records records()
const;
40 class Cursor :
public Backend::Cursor {
43 static size_t cacheSize;
48 virtual void setCacheSize(
int v);
49 Cursor(
const PostgreSQL& p, std::string q);
50 virtual Record fetchOne();
53 PostgreSQL(
const std::string& connInfo);
54 virtual bool supportsSequences()
const;
55 virtual void begin()
const;
56 virtual void commit()
const;
57 virtual void rollback()
const;
58 Backend::Result* execute(
const std::string& query)
const;
59 Backend::Cursor* cursor(
const std::string& query)
const;
60 string getSQLType(AT_field_type fieldType,
const string& length)
const;
62 virtual ~PostgreSQL();
Classes Backend, Backend::Cursor and Backend::Result.
contains litesql's exception classes
contains class Record and typedef Records
std::vector< Record > Records
shortcut
Definition: types.hpp:26