Home
last modified time | relevance | path

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

/PHP-8.0/ext/pdo_pgsql/
H A Dpgsql_statement.c615 PGresult *tmp_res; in pdo_pgsql_translate_oid_to_table() local
620 if ((tmp_res = PQexec(conn, querystr)) == NULL || PQresultStatus(tmp_res) != PGRES_TUPLES_OK) { in pdo_pgsql_translate_oid_to_table()
621 if (tmp_res) { in pdo_pgsql_translate_oid_to_table()
622 PQclear(tmp_res); in pdo_pgsql_translate_oid_to_table()
629 if (1 == PQgetisnull(tmp_res, 0, 0) || (table_name = PQgetvalue(tmp_res, 0, 0)) == NULL) { in pdo_pgsql_translate_oid_to_table()
630 PQclear(tmp_res); in pdo_pgsql_translate_oid_to_table()
636 PQclear(tmp_res); in pdo_pgsql_translate_oid_to_table()
/PHP-8.0/ext/pgsql/
H A Dpgsql.c1594 PGresult *tmp_res; in PHP_FUNCTION() local
1602 …if ((tmp_res = PQexec(pg_result->conn, ZSTR_VAL(querystr.s))) == NULL || PQresultStatus(tmp_res) !… in PHP_FUNCTION()
1603 if (tmp_res) { in PHP_FUNCTION()
1604 PQclear(tmp_res); in PHP_FUNCTION()
1613 if ((table_name = PQgetvalue(tmp_res, 0, 0)) == NULL) { in PHP_FUNCTION()
1614 PQclear(tmp_res); in PHP_FUNCTION()
1624 PQclear(tmp_res); in PHP_FUNCTION()

Completed in 21 milliseconds