| 3214 | /* ====== accessor funcs for PGresult ======== */ |
| 3215 | |
| 3216 | ExecStatusType |
| 3217 | PQresultStatus(const PGresult *res) |
| 3218 | { |
| 3219 | if (!res) |
| 3220 | return PGRES_FATAL_ERROR; |
| 3221 | return res->resultStatus; |
| 3222 | } |
| 3223 | |
| 3224 | char * |
| 3225 | PQresStatus(ExecStatusType status) |
no outgoing calls