Hello how to store and take audio file from databse?? and which database software are suitable for doing this kind of job??
Why do you need to make your life harder? Store the location of audio file in db. Any thoughts on why do you need this?
Do you really want to store audio files in DB. strange. Why don't you use DB for music file location repository and direct access music file by FLASH or Server side language.
While is is technically possible it just isn't practical to do this. You can't use standard SQL to store/retrieve your audio files and the database will grow in size so quickly that backup/recovery will become a real problem. Just store audio catalogue information in your database with a link to the location of the audio file. Even better, store a symbolic link to the file so you can change the actual location without disturbing the database. Petey