Home
last modified time | relevance | path

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

/php-src/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-src/ext/pgsql/
H A Dpgsql.c1554 PGresult *tmp_res = PQexec(pg_result->conn, ZSTR_VAL(querystr.s)); in PHP_FUNCTION() local
1556 if (!tmp_res || PQresultStatus(tmp_res) != PGRES_TUPLES_OK) { in PHP_FUNCTION()
1557 if (tmp_res) { in PHP_FUNCTION()
1558 PQclear(tmp_res); in PHP_FUNCTION()
1563 char *table_name = PQgetvalue(tmp_res, 0, 0); in PHP_FUNCTION()
1565 PQclear(tmp_res); in PHP_FUNCTION()
1572 PQclear(tmp_res); in PHP_FUNCTION()

Completed in 20 milliseconds