Go to the source code of this file.
|
| | pqxx |
| | The home of all libpqxx classes, functions, templates, etc.
|
| |
| | pqxx::internal |
| | Private namespace for libpqxx's internal use; do not access.
|
| |
|
| template<typename... T> |
| void | pqxx::parse_composite (ctx c, std::string_view text, T &...fields) |
| | Parse a string representation of a value of a composite type. More...
|
| |
| template<typename... T> |
| std::size_t | pqxx::composite_size_buffer (T const &...fields) noexcept |
| | Estimate the buffer size needed to represent a value of a composite type. More...
|
| |
| template<typename... T> |
| zview | pqxx::composite_into_buf (ctx c, std::span< char > buf, T const &...fields) |
| | Render a series of values as a single composite SQL value. More...
|
| |
| template<typename... T> |
| char * | pqxx::composite_into_buf (char *begin, char *end, T const &...fields) |
| | Render a series of values as a single composite SQL value. More...
|
| |