Home
last modified time | relevance | path

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

/PHP-7.2/ext/pdo_pgsql/
H A Dpgsql_statement.c613 PGresult *tmp_res; in pdo_pgsql_translate_oid_to_table() local
618 if ((tmp_res = PQexec(conn, querystr)) == NULL || PQresultStatus(tmp_res) != PGRES_TUPLES_OK) { in pdo_pgsql_translate_oid_to_table()
619 if (tmp_res) { in pdo_pgsql_translate_oid_to_table()
620 PQclear(tmp_res); in pdo_pgsql_translate_oid_to_table()
627 if (1 == PQgetisnull(tmp_res, 0, 0) || (table_name = PQgetvalue(tmp_res, 0, 0)) == NULL) { in pdo_pgsql_translate_oid_to_table()
628 PQclear(tmp_res); in pdo_pgsql_translate_oid_to_table()
634 PQclear(tmp_res); in pdo_pgsql_translate_oid_to_table()
/PHP-7.2/ext/pgsql/
H A Dpgsql.c2486 PGresult *tmp_res; local
2494 …if ((tmp_res = PQexec(pg_result->conn, ZSTR_VAL(querystr.s))) == NULL || PQresultStatus(tmp_res) !…
2495 if (tmp_res) {
2496 PQclear(tmp_res);
2505 if ((table_name = PQgetvalue(tmp_res, 0, 0)) == NULL) {
2506 PQclear(tmp_res);
2516 PQclear(tmp_res);

Completed in 130 milliseconds