Home
last modified time | relevance | path

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

/PHP-7.1/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.1/ext/pgsql/
H A Dpgsql.c2480 PGresult *tmp_res; local
2488 …if ((tmp_res = PQexec(pg_result->conn, ZSTR_VAL(querystr.s))) == NULL || PQresultStatus(tmp_res) !…
2489 if (tmp_res) {
2490 PQclear(tmp_res);
2499 if ((table_name = PQgetvalue(tmp_res, 0, 0)) == NULL) {
2500 PQclear(tmp_res);
2510 PQclear(tmp_res);

Completed in 28 milliseconds