|
libpqxx
|
Stream that reads and writes a large object. More...
#include <largeobject.hxx>

Public Types | |
| using | char_type = CHAR |
| using | traits_type = TRAITS |
| using | int_type = typename traits_type::int_type |
| using | pos_type = typename traits_type::pos_type |
| using | off_type = typename traits_type::off_type |
Public Member Functions | |
| basic_lostream (dbtransaction &T, largeobject O, largeobject::size_type BufSize=512) | |
| Create a basic_lostream. More... | |
| basic_lostream (dbtransaction &T, oid O, largeobject::size_type BufSize=512) | |
| Create a basic_lostream. More... | |
| ~basic_lostream () | |
Stream that reads and writes a large object.
Use this class exactly as you would a std::iostream to read data from, or write data to a large object. All formatting and streaming operations of std::iostream are supported. What you'll typically want to use, however, is the lostream alias (which defines a basic_lostream for char). This is similar to how e.g. std::fstream is related to std::basic_fstream.
Currently only works for <char, std::char_traits<char>>.
| using pqxx::basic_lostream< CHAR, TRAITS >::char_type = CHAR |
| using pqxx::basic_lostream< CHAR, TRAITS >::int_type = typename traits_type::int_type |
| using pqxx::basic_lostream< CHAR, TRAITS >::off_type = typename traits_type::off_type |
| using pqxx::basic_lostream< CHAR, TRAITS >::pos_type = typename traits_type::pos_type |
| using pqxx::basic_lostream< CHAR, TRAITS >::traits_type = TRAITS |
| pqxx::basic_lostream< CHAR, TRAITS >::basic_lostream | ( | dbtransaction & | T, |
| largeobject | O, | ||
| largeobject::size_type | BufSize = 512 |
||
| ) |
Create a basic_lostream.
| T | Transaction in which this stream is to exist |
| O | Large object to access |
| BufSize | Size of buffer to use internally (optional) |
| pqxx::basic_lostream< CHAR, TRAITS >::basic_lostream | ( | dbtransaction & | T, |
| oid | O, | ||
| largeobject::size_type | BufSize = 512 |
||
| ) |
Create a basic_lostream.
| T | Transaction in which this stream is to exist |
| O | Large object to access |
| BufSize | Size of buffer to use internally (optional) |
| pqxx::basic_lostream< CHAR, TRAITS >::~basic_lostream | ( | ) |