goofyui
goofyui

Reputation: 3492

How do i sql export table structure and data to firebase?

I am working on Xamarin Mobile App. I had SQL as my server database. However hosting SQL on Amazon or Microsoft is costing a lot. So I need to move to Firebase. I am very new to firebase.

How do I SQL export table structure and data to firebase?

Upvotes: 0

Views: 1958

Answers (1)

Frank van Puffelen
Frank van Puffelen

Reputation: 599111

Firebase is a NoSQL database. You cannot simply export the data from SQL and import it into Firebase.

I recommend that you read about NoSQL data modeling, watch out Firebase for SQL developers video series and then read the Firebase Database documentation.

Upvotes: 2

Related Questions