Google Bigquery - Compile error in C# at TableRow.FData && j.Query(qr, "PID").Fetch() -
hi below code executing google bigquery, getting error message @ ".fetch()" && "tablerow.fdata" can please me regarding this? missed reference.
the error message
error 1 'google.apis.bigquery.v2.jobsresource.queryrequest' not contain definition 'fetch' , no extension method 'fetch' accepting first argument of type 'google.apis.bigquery.v2.jobsresource.queryrequest' found (are missing using directive or assembly reference?) c:\users\srinivasa\documents\visual studio 2013\projects\p12\p12\program.cs 71 69 p12
error 2 type name 'fdata' not exist in type 'google.apis.bigquery.v2.data.tablerow' c:\users\srinivasa\documents\visual studio 2013\projects\p12\p12\program.cs 75 35 p12
queryresponse response = j.query(qr, "xxx").fetch(); foreach (tablerow row in response.rows) { list<string> list = new list<string>(); foreach (tablerow.fdata field in row.f) { list.add(field.v); } console.writeline(string.join("\t", list)); }
i got logic seeing google documentation @ querying data
Comments
Post a Comment