Home
last modified time | relevance | path

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

/PHP-8.1/ext/pdo_pgsql/
H A Dpgsql_statement.c566 PGresult *tmp_res; in pdo_pgsql_translate_oid_to_table() local
571 if ((tmp_res = PQexec(conn, querystr)) == NULL || PQresultStatus(tmp_res) != PGRES_TUPLES_OK) { in pdo_pgsql_translate_oid_to_table()
572 if (tmp_res) { in pdo_pgsql_translate_oid_to_table()
573 PQclear(tmp_res); in pdo_pgsql_translate_oid_to_table()
580 if (1 == PQgetisnull(tmp_res, 0, 0) || (table_name = PQgetvalue(tmp_res, 0, 0)) == NULL) { in pdo_pgsql_translate_oid_to_table()
581 PQclear(tmp_res); in pdo_pgsql_translate_oid_to_table()
587 PQclear(tmp_res); in pdo_pgsql_translate_oid_to_table()
/PHP-8.1/ext/pgsql/
H A Dpgsql.c1639 PGresult *tmp_res = PQexec(pg_result->conn, ZSTR_VAL(querystr.s)); in PHP_FUNCTION() local
1641 if (!tmp_res || PQresultStatus(tmp_res) != PGRES_TUPLES_OK) { in PHP_FUNCTION()
1642 if (tmp_res) { in PHP_FUNCTION()
1643 PQclear(tmp_res); in PHP_FUNCTION()
1648 char *table_name = PQgetvalue(tmp_res, 0, 0); in PHP_FUNCTION()
1650 PQclear(tmp_res); in PHP_FUNCTION()
1657 PQclear(tmp_res); in PHP_FUNCTION()

Completed in 22 milliseconds