PQdescribePortal method

Pointer<PGresult> PQdescribePortal(
  1. Pointer<PGconn> conn,
  2. Pointer<Char> portal
)

Implementation

ffi.Pointer<PGresult> PQdescribePortal(
  ffi.Pointer<PGconn> conn,
  ffi.Pointer<ffi.Char> portal,
) {
  return _PQdescribePortal(
    conn,
    portal,
  );
}