You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Add a flag 'user_supplied_client' which prevents the library from attempting
to create a BigQuery client.
- Document the use of `connect_args` for suppling their own BigQuery client
to the dbapi
Copy file name to clipboardExpand all lines: README.rst
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -234,6 +234,25 @@ To create the base64 encoded string you can use the command line tool ``base64``
234
234
235
235
Alternatively, you can use an online generator like `www.base64encode.org <https://www.base64encode.org>_` to paste your credentials JSON file to be encoded.
236
236
237
+
238
+
Supplying Your Own BigQuery Client
239
+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
240
+
241
+
The above connection string parameters allow you to influence how the BigQuery client used to execute your queries will be instantiated.
242
+
If you need additional control, you can supply a BigQuery client of your own:
0 commit comments