* PQsendQuery * Submit a query, but don't wait for it to finish * * Returns: 1 if successfully submitted * 0 if error (conn->errorMessage is set) * * PQsendQueryContinue is a non-exported version that behaves identically * except that it doesn't reset conn->errorMessage. */
| 1357 | * except that it doesn't reset conn->errorMessage. |
| 1358 | */ |
| 1359 | int |
| 1360 | PQsendQuery(PGconn *conn, const char *query) |
| 1361 | { |
| 1362 | return PQsendQueryInternal(conn, query, true); |
| 1363 | } |
| 1364 | |
| 1365 | int |
| 1366 | PQsendQueryContinue(PGconn *conn, const char *query) |