Home
last modified time | relevance | path

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

/PHP-8.2/ext/pdo_pgsql/
H A Dpgsql_statement.c582 PGresult *tmp_res; in pdo_pgsql_translate_oid_to_table() local
587 if ((tmp_res = PQexec(conn, querystr)) == NULL || PQresultStatus(tmp_res) != PGRES_TUPLES_OK) { in pdo_pgsql_translate_oid_to_table()
588 if (tmp_res) { in pdo_pgsql_translate_oid_to_table()
589 PQclear(tmp_res); in pdo_pgsql_translate_oid_to_table()
596 if (1 == PQgetisnull(tmp_res, 0, 0) || (table_name = PQgetvalue(tmp_res, 0, 0)) == NULL) { in pdo_pgsql_translate_oid_to_table()
597 PQclear(tmp_res); in pdo_pgsql_translate_oid_to_table()
603 PQclear(tmp_res); in pdo_pgsql_translate_oid_to_table()
/PHP-8.2/ext/pgsql/
H A Dpgsql.c1547 PGresult *tmp_res = PQexec(pg_result->conn, ZSTR_VAL(querystr.s)); in PHP_FUNCTION() local
1549 if (!tmp_res || PQresultStatus(tmp_res) != PGRES_TUPLES_OK) { in PHP_FUNCTION()
1550 if (tmp_res) { in PHP_FUNCTION()
1551 PQclear(tmp_res); in PHP_FUNCTION()
1556 char *table_name = PQgetvalue(tmp_res, 0, 0); in PHP_FUNCTION()
1558 PQclear(tmp_res); in PHP_FUNCTION()
1565 PQclear(tmp_res); in PHP_FUNCTION()

Completed in 31 milliseconds