I have a Google Apps Script application that currently accesses a GCP SQL database with JDBC.
Using the normal SQL database doesn't cut it, so I decided to try BigQuery.
Is there a way to access BigQuery from Google Apps Script without connecting with an account connected to the GCP project? I want guests who use my script to be able to get data.
I'm looking for either a general way (as in: IP, database, username, password and I manage the connection) or a client library way I can use with Apps Script.
Note, the BigQuery Apps Script plugin seem to only allow access to my own databases, so guests will get denied access.