Home
last modified time | relevance | path

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

/PHP-7.3/ext/pdo_pgsql/
H A Dpgsql_statement.c611 PGresult *tmp_res; in pdo_pgsql_translate_oid_to_table() local
616 if ((tmp_res = PQexec(conn, querystr)) == NULL || PQresultStatus(tmp_res) != PGRES_TUPLES_OK) { in pdo_pgsql_translate_oid_to_table()
617 if (tmp_res) { in pdo_pgsql_translate_oid_to_table()
618 PQclear(tmp_res); in pdo_pgsql_translate_oid_to_table()
625 if (1 == PQgetisnull(tmp_res, 0, 0) || (table_name = PQgetvalue(tmp_res, 0, 0)) == NULL) { in pdo_pgsql_translate_oid_to_table()
626 PQclear(tmp_res); in pdo_pgsql_translate_oid_to_table()
632 PQclear(tmp_res); in pdo_pgsql_translate_oid_to_table()
/PHP-7.3/ext/pgsql/
H A Dpgsql.c2485 PGresult *tmp_res; local
2493 …if ((tmp_res = PQexec(pg_result->conn, ZSTR_VAL(querystr.s))) == NULL || PQresultStatus(tmp_res) !…
2494 if (tmp_res) {
2495 PQclear(tmp_res);
2504 if ((table_name = PQgetvalue(tmp_res, 0, 0)) == NULL) {
2505 PQclear(tmp_res);
2515 PQclear(tmp_res);

Completed in 34 milliseconds