PQdescribePortal Function

public function PQdescribePortal(conn, portalName) result(res)

Submits a request to obtain information about the specified portral, and waits for completion.

PQdescribePortal allows an application to obtain information about a previously created portal. (libpq does not provide any direct access to portals, but you can use this function to inspect the properties fo a cursor created with a DECLARE CURSOR SQL command.)

cf. PostgreSQL Documentation

Arguments

Type IntentOptional Attributes Name
type(c_ptr), intent(in) :: conn
character(len=*), intent(in) :: portalName

Return Value type(c_ptr)


Contents