Lines Matching refs:pgsql_row
1894 int pgsql_row; in PHP_FUNCTION() local
1932 pgsql_row = pg_result->row; in PHP_FUNCTION()
1933 if (pgsql_row >= PQntuples(pgsql_result)) { in PHP_FUNCTION()
1947 pgsql_row = (int)row; in PHP_FUNCTION()
1955 if (PQgetisnull(pgsql_result, pgsql_row, field_offset)) { in PHP_FUNCTION()
1958 RETVAL_STRINGL(PQgetvalue(pgsql_result, pgsql_row, field_offset), in PHP_FUNCTION()
1959 PQgetlength(pgsql_result, pgsql_row, field_offset)); in PHP_FUNCTION()
1970 int i, num_fields, pgsql_row; in php_pgsql_fetch_hash() local
2019 pgsql_row = (int)row; in php_pgsql_fetch_hash()
2020 pg_result->row = pgsql_row; in php_pgsql_fetch_hash()
2023 pgsql_row = pg_result->row; in php_pgsql_fetch_hash()
2024 if (pgsql_row < 0 || pgsql_row >= PQntuples(pgsql_result)) { in php_pgsql_fetch_hash()
2032 if (PQgetisnull(pgsql_result, pgsql_row, i)) { in php_pgsql_fetch_hash()
2041 char *element = PQgetvalue(pgsql_result, pgsql_row, i); in php_pgsql_fetch_hash()
2229 int pgsql_row; in php_pgsql_data_info() local
2268 pgsql_row = pg_result->row; in php_pgsql_data_info()
2269 if (pgsql_row < 0 || pgsql_row >= PQntuples(pgsql_result)) { in php_pgsql_data_info()
2282 pgsql_row = (int)row; in php_pgsql_data_info()
2292 RETVAL_LONG(PQgetlength(pgsql_result, pgsql_row, field_offset)); in php_pgsql_data_info()
2295 RETVAL_LONG(PQgetisnull(pgsql_result, pgsql_row, field_offset)); in php_pgsql_data_info()