Mercurial > hg > orthanc-postgresql
view Core/PostgreSQLConnection.h @ 148:0ca5a383a830
fix OS X build
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 25 Aug 2017 11:06:33 +0200 |
parents | ba9cb920e679 |
children | 5611e6b1ec14 |
line wrap: on
line source
/** * Orthanc - A Lightweight, RESTful DICOM Store * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics * Department, University Hospital of Liege, Belgium * Copyright (C) 2017 Osimis, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License * as published by the Free Software Foundation, either version 3 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. **/ #pragma once #include <string> #include <boost/noncopyable.hpp> #include <stdint.h> namespace OrthancPlugins { class PostgreSQLConnection : public boost::noncopyable { private: friend class PostgreSQLStatement; friend class PostgreSQLLargeObject; std::string host_; uint16_t port_; std::string username_; std::string password_; std::string database_; std::string uri_; void* pg_; /* Object of type "PGconn*" */ void Close(); public: PostgreSQLConnection(); PostgreSQLConnection(const PostgreSQLConnection& other); ~PostgreSQLConnection() { Close(); } void SetConnectionUri(const std::string& uri); std::string GetConnectionUri() const; void SetHost(const std::string& host); const std::string& GetHost() const { return host_; } void SetPortNumber(uint16_t port); uint16_t GetPortNumber() const { return port_; } void SetUsername(const std::string& username); const std::string& GetUsername() const { return username_; } void SetPassword(const std::string& password); const std::string& GetPassword() const { return password_; } void SetDatabase(const std::string& database); void ResetDatabase() { SetDatabase(""); } const std::string& GetDatabase() const { return database_; } void Open(); void Execute(const std::string& sql); bool DoesTableExist(const char* name); void ClearAll(); }; }