|
template<typename T > |
T | from_string (std::string_view text) |
| Attempt to convert postgres-generated string to given built-in type. More...
|
|
template<typename T > |
void | from_string (std::string_view text, T &value) |
| Attempt to convert postgres-generated string to given built-in object. More...
|
|
template<typename TYPE > |
std::string | to_string (TYPE const &value) |
| Convert a value to a readable string that PostgreSQL will understand. More...
|
|
template<typename TYPE > |
void | into_string (TYPE const &value, std::string &out) |
| Convert a value to a readable string that PostgreSQL will understand. More...
|
|
template<typename TYPE > |
bool | is_null (TYPE const &value) |
| Is value null? More...
|
|