bqjdbc (also known as starschema-bigquery-jdbc) is a
JDBC Driver for
Google BigQuery.
You can create a JDBC connection easily for a variety of authentication types. For instance for a service account in a properties file:
projectid=disco-parsec-659
type=service
user[email protected]
password=bigquery_credentials.p12import net.starschema.clouddb.jdbc.*;
import java.sql.*;
public static class Example {
    public static void main(String[] args) {
        // load the class so that it registers itself
        Class.forName("net.starschema.clouddb.jdbc.BQDriver");
        final String jdbcUrl =
            BQSupportFuncts.constructUrlFromPropertiesFile(
                BQSupportFuncts.readFromPropFile(
                    getClass().getResource("/serviceaccount.properties").getFile()));
        final Connection con = DriverManager.getConnection(jdbcUrl);
        // perform SQL against BigQuery now!
    }
}The dependency is provided on Maven central at the following coordinates:
<dependency>
    <groupId>com.google.looker-open-source</groupId>
    <artifactId>bqjdbc</artifactId>
    <version>...</version>
</dependency>A fat (shaded) jar is also available:
<dependency>
    <groupId>com.google.looker-open-source</groupId>
    <artifactId>bqjdbc</artifactId>
    <version>...</version>
    <classifier>shaded</classifier>
</dependency>We require Java (JDK 8 through 15) and Apache Maven (3.2.5 or higher).
$ git clone git://github.com/looker-open-source/bqjdbc.git
$ cd bqjdbc
$ mvn clean install -DskipTestsReleases are handled through GitHub actions, and kicked off when a release is created.
💡 Make sure that
-SNAPSHOTis not part of the version when you create a release.
- 
Prepare a release by removing
-SNAPSHOTfrom the version in pom.xml - 
Initiate a release and be sure to write a meaningful description.
This will also create a tag with the specified name
 - 
Check the GitHub action to see that it was a success
 - 
Create a new commit by bumping the version and adding
-SNAPSHOTto it 
bqjdbc was forked from https://code.google.com/p/starschema-bigquery-jdbc/ in 2013
and has since been maintained by a few folks at Looker.