| 2790 | */ |
| 2791 | |
| 2792 | int |
| 2793 | PQgetlineAsync(PGconn *conn, char *buffer, int bufsize) |
| 2794 | { |
| 2795 | if (!conn) |
| 2796 | return -1; |
| 2797 | |
| 2798 | return pqGetlineAsync3(conn, buffer, bufsize); |
| 2799 | } |
| 2800 | |
| 2801 | /* |
| 2802 | * PQputline -- sends a string to the backend during COPY IN. |
no test coverage detected