Click here to Skip to main content
15,891,204 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
how can i store video in sql server an play that video in b.net form..?
Posted

 
Share this answer
 
Playing it is pretty easy: MSDN: Embedding the Windows Media Player Control in a Visual Basic .NET Solution[^]

But I wouldn't store videos in SQL: they tend to be large and SQL server does have limits on storage space which you can exceed very quickly with videos. In addition it uses serious amounts of server bandwidth to return the data to your application. Instead, I would store the actual video as a disk file, and store the file location in SQL.
 
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