Click here to Skip to main content
15,890,670 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i am codding in c# asp.net . i am preparing a web page for accessing multimedia (video , audio,......)files from sql database. so how can i do this please?
Posted
Comments
[no name] 2-Oct-12 6:47am    
you can store the link of that uploaded video to the user.

 
Share this answer
 
You can follow this approach: File Upload with ASP.NET[^], but as videos tend to be large files, I suggest not using the database itself. SQL Server is providing a really usefull architecture, called filestream[^]. It is a combination of the database and the file system, thus you have the advantages of both. This tutorial has it flaws, but it is a good starting point: How Do I: Use SQL File Stream[^], and I would also read this one two: http://msdn.microsoft.com/en-us/magazine/dd695918.aspx[^].
 
Share this answer
 
I dont suggest you to store video/audio in sql server, it is not built for streaming video/audio, you will have to retrieve it from sql server to a temp folder and then stream it using IIS smooth streaming or something. so it is waste of resources.

I will suggest you to store only meta-data along with the path of the audio/video file in database, and store the files on hard drive. so that you can search the video information from database and then use the path to get the video/audio from hard drive.

I will even do not vote for storing images in database, if they are many.

But if you do not have any option then go ahead with the solutions provided by others.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900