BigQuery
-
In the Database tool window ( ), click the Data Source Properties icon
Select ..
-
On the Data Sources tab in the Data Sources and Drivers dialog, click the Add icon (
) and select BigQuery.
-
At the bottom of the data source settings area, click the Download missing driver files link. As you click this link, WebStorm downloads drivers that are required to interact with a database. To decrease the size of the installation package and keep driver versions up-to-date, drivers are not bundled with the IDE.
You can specify your own drivers for the data source if you do not want to download the provided drivers. For more information about creating a database connection with your driver, see Add a user driver to an existing connection.
-
Specify database connection details. Alternatively, paste the JDBC URL in the URL field.
To delete a password, right-click the Password field and select Set Empty.
-
Specify information about the project to which you want to connect.
-
Project ID:: a unique identifier for your project.
-
OAuthType:: an option that specifies how the driver obtains or provides the credentials for OAuth 2.0 authentication. You can select between the following options:
-
Google Service Account: authenticate the connection with a Google service account. In the URL field, add the following options:
OAuthServiceAcctEmail
(a Google service account email address),OAuthPvtKeyPath
(the full path to a private key file for the service account), andOAuthType=0
. Consider the following example JDBC URL.jdbc:bigquery://https://www.googleapis.com/bigquery/v2:443; ProjectId=ConnectToBigQuery; OAuthType=0; OAuthServiceAcctEmail=my_google_service_account@connect-to-bigquery.iam.gserviceaccount.com; OAuthPvtKeyPath=/Users/jetbrains/DatagripProjects/keyFile.p12; -
Google User Account: authenticate the connection with a Google user account. You must provide your Google user account credentials to connect to the server.
jdbc:bigquery://https://www.googleapis.com/bigquery/v2:443; ProjectId=ConnectToBigQuery; OAuthType=1; -
Pre-Generated Access and Refresh Tokens: authenticate the connection using access or refresh tokens that have already been generated from the Google Authorization Server. In the URL field, add the following options:
OAuthAccessToken
(an access token),OAuthClientId
(a refresh token),OAuthClientSecret
(a client secret), andOAuthType=2
. If you are using a refresh token, set theOAuthClientId
property to to your client ID and set theOAuthClientSecret
property to your client secret. For more information about tokens, see Using OAuth 2.0 to Access Google APIs at developers.google.com.jdbc:bigquery://https://www.googleapis.com/bigquery/v2:443; OAuthType=2; ProjectId=ConnectToBigQuery; OAuthAccessToken=FI1vf0PSMMu9; OAuthRefreshToken=@3GANwIJk2n3lk3n5g2k45; OAuthClientId=234k5j23l4kf; OAuthClientSecret=lkegjle+2435mn; -
Application Default Credentials: authenticate the connection using credentials obtained through Application Default Credentials (ADC). For more information about ADC and how to obtain them, see Authenticating as a service account at cloud.google.com.
jdbc:bigquery://https://www.googleapis.com/bigquery/v2:443; OAuthType=3; ProjectId=ConnectToBigQuery;
-
-
-
To ensure that the connection to the data source is successful, click the Test Connection link.