Return proper result.

This commit is contained in:
Yasuo Ohgaki 2002-04-08 00:50:44 +00:00
parent 7770fd5710
commit 7d48177f37

View File

@ -2679,12 +2679,12 @@ PHP_FUNCTION(pg_result_status)
pgsql_result = pg_result->result;
if (result_type == PGSQL_STATUS_LONG) {
RETURN_STRING(PQcmdStatus(pgsql_result), 1);
}
else if (result_type == PGSQL_STATUS_STRING) {
status = PQresultStatus(pgsql_result);
RETURN_LONG((int)status);
}
else if (result_type == PGSQL_STATUS_STRING) {
RETURN_STRING(PQcmdStatus(pgsql_result), 1);
}
else {
php_error(E_WARNING, "%s() expects optional 2nd parameter to be PGSQL_STATUS_LONG or PGSQL_STATUS_STRING",
get_active_function_name(TSRMLS_C));