I’m currently making an app using Flutter. Now I really want the database to be SQL based and not NoSql like Firebase. What could be the possible options going about that? You can consider the application to be something like a social network.
Advertisement
Answer
If you want to save data locally on your device then you can use sqflite plugin
And for like social media application you need to access data over the internet, in this case you have to build backend system and access data throw APi, for building backend system and APi you can chose multiple options
- PHP (using Laravel framework and relational database)
- JAVA (using Spring boot framework and relational database)
- PYTHON (Django framework and relational database)
and many more…