Reputation: 23
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
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
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