1234567891011121314151617181920212223242526272829303132333435 |
- #include <string>
- #include <pqxx/internal/callgate.hxx>
- #include <pqxx/internal/libpq-forward.hxx>
- namespace pqxx
- {
- class blob;
- class largeobject;
- } // namespace pqxx
- namespace pqxx::internal::gate
- {
- class PQXX_PRIVATE connection_largeobject : callgate<connection>
- {
- friend class pqxx::blob;
- friend class pqxx::largeobject;
- connection_largeobject(reference x) : super(x) {}
- pq::PGconn *raw_connection() const { return home().raw_connection(); }
- };
- class PQXX_PRIVATE const_connection_largeobject : callgate<connection const>
- {
- friend class pqxx::blob;
- friend class pqxx::largeobject;
- const_connection_largeobject(reference x) : super(x) {}
- std::string error_message() const { return home().err_msg(); }
- };
- } // namespace pqxx::internal::gate
|