|
libpqxx
The C++ client library for PostgreSQL
|
Stream that reads and writes a large object. More...
Inheritance diagram for pqxx::basic_lostream< CHAR, TRAITS >:
Collaboration diagram for pqxx::basic_lostream< CHAR, TRAITS >:Public Member Functions | |
| basic_lostream (dbtransaction &t, largeobject o, largeobject::size_type buf_size=512) | |
| Create a basic_lostream. | |
| basic_lostream (dbtransaction &t, oid o, largeobject::size_type buf_size=512) | |
| Create a basic_lostream. | |
Stream that reads and writes a large object.
This worked like a std::iostream, but to read data from, or write data to, a large object. It supported all formatting and streaming operations of std::iostream.
This functionality was considered too fragile and complex, so it has been replaced with a single, much simpler class.
|
inline |
Create a basic_lostream.
| t | Transaction in which this stream is to exist. |
| o | Large object to access. |
| buf_size | Size of buffer to use internally (optional). |
|
inline |
Create a basic_lostream.
| t | Transaction in which this stream is to exist. |
| o | Large object to access. |
| buf_size | Size of buffer to use internally (optional). |