How do I stream .flv files from SQL database

前端 未结 3 1362
执笔经年
执笔经年 2020-12-25 09:09

I want to store .flv files in the database and not in the file system.

This is what I can do right now:
Successfully convert .wmv and .mpeg to .

3条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-25 09:51

    If you're using SQL Server 2008 you could use varbinary(MAX) FILESTREAM which would allow the files to be managed by the database but still give you access to a FileStream from .NET.

提交回复
热议问题