How to store images or sounds in database
I want to store the following items in a table and retrieve a particular one.
EmpID, EmpName, EmpPhoto
How to store an image of the photo of employee?
How to get the row of the employee corresponding to the given photo?
Similarly, I want the code for storing Voice in table and method to retirve a
particular row.
Please send me the answer ASAS.
regards,
muralirajan
Re: How to store images or sounds in database
images and sounds can be treated as files (.bmp, .wav...). you can store those items in image or text fields of your database using AppendChunk (DAO/ADO). To read those values use GetChunk.