I want to store an audio file in a db

A feature in my app is playing music. I want to make a playlist of music. The user can pick the song. The audio won't be stored on their device. Which database can I use for this and how?

I am not a programmer and I am just trying to build a prototype :sweat_smile:
Thanks for your help

You would be better off storing your sound files as sound files in online storage, and to store the links to these files in your database, for users to use.

This is the general approach for most binary files and databases.

1 Like

That's a great idea. I think I will try that