Home
last modified time | relevance | path

Searched refs:tmp_res (Results 1 – 2 of 2) sorted by relevance

/php-src/ext/pdo_pgsql/
H A Dpgsql_statement.c708 PGresult *tmp_res; in pdo_pgsql_translate_oid_to_table() local
713 if ((tmp_res = PQexec(conn, querystr)) == NULL || PQresultStatus(tmp_res) != PGRES_TUPLES_OK) { in pdo_pgsql_translate_oid_to_table()
714 if (tmp_res) { in pdo_pgsql_translate_oid_to_table()
715 PQclear(tmp_res); in pdo_pgsql_translate_oid_to_table()
722 if (1 == PQgetisnull(tmp_res, 0, 0) || (table_name = PQgetvalue(tmp_res, 0, 0)) == NULL) { in pdo_pgsql_translate_oid_to_table()
723 PQclear(tmp_res); in pdo_pgsql_translate_oid_to_table()
729 PQclear(tmp_res); in pdo_pgsql_translate_oid_to_table()
/php-src/ext/pgsql/
H A Dpgsql.c1723 PGresult *tmp_res = PQexec(pg_result->conn, ZSTR_VAL(querystr.s)); in PHP_FUNCTION() local
1725 if (!tmp_res || PQresultStatus(tmp_res) != PGRES_TUPLES_OK) { in PHP_FUNCTION()
1726 if (tmp_res) { in PHP_FUNCTION()
1727 PQclear(tmp_res); in PHP_FUNCTION()
1732 char *table_name = PQgetvalue(tmp_res, 0, 0); in PHP_FUNCTION()
1734 PQclear(tmp_res); in PHP_FUNCTION()
1741 PQclear(tmp_res); in PHP_FUNCTION()

Completed in 19 milliseconds