⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 postgresql.hpp

📁 LiteSQL is a C++ library that integrates C++ objects tightly to relational database and thus provide
💻 HPP
字号:
/* LiteSQL  *  * By Tero Laitinen  *  * See LICENSE for copyright information. *//** \file postgresql.hpp * PostgreSQL PostgreSQL::Result PostgreSQL::Cursor */#ifndef _litesql_postgresql_hpp#define _litesql_postgresql_hpp#ifdef HAVE_LIBPQ#include "libpq-fe.h"#include "litesql/except.hpp"#include "litesql/types.hpp"#include "litesql/string.hpp"#include "litesql/backend.hpp"#include <string>namespace litesql {using namespace std;/** PostgreSQL - backend */class PostgreSQL : public Backend {    PGconn *conn;    mutable bool transaction;public:    /** PostgreSQL - result */    class Result : public Backend::Result {        PGresult *res;    public:        Result(PGresult * r) : res(r) {}        virtual ~Result();        virtual size_t fieldNum() const;        virtual Record fields() const;        virtual size_t recordNum() const;        virtual Records records() const;    };    /** PostgreSQL - cursor     * Note: cursors can declared only in transactions so this will      * silently begin a transaction */    class Cursor : public Backend::Cursor {        const PostgreSQL& pq;        static int sid;        static size_t cacheSize;        string name;        Records cache;        size_t cachePos;    public:        virtual void setCacheSize(int v);        Cursor(const PostgreSQL& p, string q);        virtual Record fetchOne();        virtual ~Cursor();    };    PostgreSQL(string connInfo);    virtual bool supportsSequences() const;    virtual void begin() const;    virtual void commit() const;    virtual void rollback() const;    Backend::Result* execute(string query) const;    Backend::Cursor* cursor(string query) const;    virtual ~PostgreSQL();};}#endif#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -