i want to store audio files(any of these formats mp3,wav,and iphone supported) in database and play them in iphone...any idea how to do this?
+3
A:
I don't know why you would want to store the audio files in a SQL database but sqlite3 supports BLOB. So store them as BLOB and retrieve them.
Alternatively why not store references to the files that you want to play?
hhafez
2009-06-29 04:09:34
+1
A:
In general it's best to not store binary files in any database. You are better off writing that file to the disk as a file and then storing the path in the database.
Lounges
2009-07-16 17:32:46