pgfe
pgfe copied to clipboard
PostgreSQL C++ driver
How can i attach pgfe to existing event loop based on epoll?
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...
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 ```
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