0

Currently I am creating a dashboard website by using MySQL as my database. Now, I need to get some data from Firebase which connected to my Android app. Anyone has any ideas on how to doing this kind of stuffs?

It seems like not much of this solution shown up after surfing through Internet.

Jin Sheng
  • 27
  • 1
  • 7

1 Answers1

0

First, keep in mind that Firebase uses NoSQL database technology. So you can't create tables and fields in Firebase at self. But you could make a workaround which fetches the data from Firebase and processing by a script on your web server and runs an SQL command to your MySQL database.

The technical part can be the language of your choice. Usually, in combination with MySQL, you use PHP. Here are an SDK and documentation about how to implement it in that language.

From this SDK you could now fetch data from Firebase and store it via an SQL command to your MySQL database.

Julian Schmuckli
  • 3,681
  • 11
  • 37
  • 64