* PQsendDescribePortal * Submit a Describe Portal command, but don't wait for it to finish * * Returns: 1 if successfully submitted * 0 if error (conn->errorMessage is set) */
| 2471 | * 0 if error (conn->errorMessage is set) |
| 2472 | */ |
| 2473 | int |
| 2474 | PQsendDescribePortal(PGconn *conn, const char *portal) |
| 2475 | { |
| 2476 | return PQsendDescribe(conn, 'P', portal); |
| 2477 | } |
| 2478 | |
| 2479 | /* |
| 2480 | * PQsendDescribe |