How to traffic data between Google Cloud SQL and Flutter?
Asked Answered
F

1

6

Cloud SQL documentation about connecting with external apps didn't helped me much. Isn't there some library to handle data traffic like Firebase's Cloud Firestore and Realtime Database offer?

Fic answered 13/1, 2019 at 23:53 Comment(2)
"handle" and "traffic data" does mean what exactly here?Chrestomathy
Creating, reading, updating and deleting data. Sorry for misunderstood.Fic
T
6

Either use cloud functions to provide an API for Flutter and access to the DB
or run your custom server in the Google cloud that does that.

SQL databases should never be accessed over the internet directly and instead hidden behind a web server that only exposes a limited or specialized API.

Traver answered 14/1, 2019 at 4:19 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.