Lines Matching refs:pgsql_row
1882 int pgsql_row; in PHP_FUNCTION() local
1917 pgsql_row = pg_result->row; in PHP_FUNCTION()
1918 if (pgsql_row >= PQntuples(pgsql_result)) { in PHP_FUNCTION()
1932 pgsql_row = (int)row; in PHP_FUNCTION()
1940 if (PQgetisnull(pgsql_result, pgsql_row, field_offset)) { in PHP_FUNCTION()
1943 RETVAL_STRINGL(PQgetvalue(pgsql_result, pgsql_row, field_offset), in PHP_FUNCTION()
1944 PQgetlength(pgsql_result, pgsql_row, field_offset)); in PHP_FUNCTION()
1955 int i, num_fields, pgsql_row; in php_pgsql_fetch_hash() local
2004 pgsql_row = (int)row; in php_pgsql_fetch_hash()
2005 pg_result->row = pgsql_row; in php_pgsql_fetch_hash()
2008 pgsql_row = pg_result->row; in php_pgsql_fetch_hash()
2009 if (pgsql_row < 0 || pgsql_row >= PQntuples(pgsql_result)) { in php_pgsql_fetch_hash()
2017 if (PQgetisnull(pgsql_result, pgsql_row, i)) { in php_pgsql_fetch_hash()
2026 char *element = PQgetvalue(pgsql_result, pgsql_row, i); in php_pgsql_fetch_hash()
2214 int pgsql_row; in php_pgsql_data_info() local
2250 pgsql_row = pg_result->row; in php_pgsql_data_info()
2251 if (pgsql_row < 0 || pgsql_row >= PQntuples(pgsql_result)) { in php_pgsql_data_info()
2264 pgsql_row = (int)row; in php_pgsql_data_info()
2274 RETVAL_LONG(PQgetlength(pgsql_result, pgsql_row, field_offset)); in php_pgsql_data_info()
2277 RETVAL_LONG(PQgetisnull(pgsql_result, pgsql_row, field_offset)); in php_pgsql_data_info()