RobHG
RobHG

Reputation: 115

How can I connect Cloud SQL for MySQL to my flutter app and use Firebase for authentication?

What I'm trying to do is use Cloud SQL for MySQL for my database and use Firebase for auth and push notifications. What I can't figure out is how can I match a Singed In user with the corresponding user in my MySQL database to fetch the users data.

Upvotes: 0

Views: 443

Answers (1)

Frank van Puffelen
Frank van Puffelen

Reputation: 599956

When you're using Firebase Authentication, you'll typically use the UID of those users to associate them with their data in the database. Instead of using a foreign key, it'll just be a string value - as there's no target in the database for a foreign key to point to.

After that, it should be possible to query on the UID values as you would do on other fields too. If you're having a problem with that, edit your question to show what you tried.

Upvotes: 1

Related Questions