pgfe icon indicating copy to clipboard operation
pgfe copied to clipboard

PostgreSQL C++ driver

Results 5 pgfe issues
Sort by recently updated
recently updated
newest added

How can i attach pgfe to existing event loop based on epoll?

enhancement
3.0

Please add documentation and examples on working with refcursors. When calling a procedure with Connection::call() that has an INOUT refcursor parameter, in the lambda handler, in row, one record with...

enhancement

Have you compared with other c++ libraries for postgresql? Such as,libpqxx (it has not connection pool)

For example, `errtext` must not be considered in the following snippet: ```sql update task set end_date = :enddate/*, error_text = :errtext*/ where id = :id ```

bug
3.0

Hi, there is such a code example: ``` pgfe::Connection conn(pgfe::Connection_options{}.set(pgfe::Communication_mode::net).set_hostname( ...)....; pgfe::Transaction_guard tg{*conn_}; conn.call("public.get_objects", start_of_interval, end_of_interval, "cr"); conn.execute([](pgfe::Row&& row) { std::cout

3.0