Best database to use [Solved]

Hello!

I’m looking for recommendations on the best database service to use with Defold!

Thank you!

What do you wish to store in the database? There’s a discussion around MySQL here: MySQL

1 Like

mainly game object properties to save user’s progress and also information associated with users.

Ok, you don’t necessarily have to use a db. You could use DefSave or just write a Lua table using sys.save() and sys.load().

3 Likes

Isn’t that used to save data locally on the players’ devices?

Yes. If you want remote storage of user data then PlayFab is a really great solution.

4 Likes

Ok thanks a lot for the help :heart:

2 Likes