Patricio Fuentealba
Patricio Fuentealba

Reputation: 23

Trying to connect to connect Google Sheet script to a Postgres Google Cloud SQL instance

I'm writing a script to connect a Google sheet to GCP Postgres instance, unfortunately I only see documentation for MySQL. Do you know if there is support for Google scripting/Postgres integration?

Thanks.

Upvotes: 1

Views: 1099

Answers (2)

Ayazhan
Ayazhan

Reputation: 83

Yes, Apps Script JDBC connectors do not support Postgres, still. If you don't want to build your own script, you can use database connector addons. Most of them support Postgres.

Upvotes: 1

TheAddonDepot
TheAddonDepot

Reputation: 8964

Google Apps Script has JDBC connectors but they do not have support for Postgres as yet.

Currently Apps Script's JDBC connectors only support Cloud SQL(MySQL), MySQL, MSSQL, and Oracle databases as listed in the opening paragraph of the JDBC documentation.

Upvotes: 1

Related Questions