* PQsendDescribePrepared * Submit a Describe Statement command, but don't wait for it to finish * * Returns: 1 if successfully submitted * 0 if error (conn->errorMessage is set) */
| 2458 | * 0 if error (conn->errorMessage is set) |
| 2459 | */ |
| 2460 | int |
| 2461 | PQsendDescribePrepared(PGconn *conn, const char *stmt) |
| 2462 | { |
| 2463 | return PQsendDescribe(conn, 'S', stmt); |
| 2464 | } |
| 2465 | |
| 2466 | /* |
| 2467 | * PQsendDescribePortal |