| 3222 | } |
| 3223 | |
| 3224 | char * |
| 3225 | PQresStatus(ExecStatusType status) |
| 3226 | { |
| 3227 | if ((unsigned int) status >= lengthof(pgresStatus)) |
| 3228 | return libpq_gettext("invalid ExecStatusType code"); |
| 3229 | return pgresStatus[status]; |
| 3230 | } |
| 3231 | |
| 3232 | char * |
| 3233 | PQresultErrorMessage(const PGresult *res) |