Reputation: 111
The queryResult showed that it has 13224 rows, then I used
List<TableRow> rows = queryResult.getRows();
Then it shows the list "rows" only has 512 rows.
Any help?
Upvotes: 0
Views: 809
Reputation: 26617
You may not get all of the rows back if the rows are large or there are a lot of them. You can get the remaining rows by calling jobs.GetQUeryResults() or tabledata.List() with the corresponding offsets.
From https://developers.google.com/bigquery/docs/queries:
Upvotes: 1
Reputation: 149
I think you have to use result set object to get the row. result_set.getString() method is used to fetch attribute of rows.
Upvotes: 0