小编典典

如何读写MP3到数据库

sql

如何从Sql数据库读取MP3。在SQL中,我已经将文件存储为二进制格式。现在我想检索存储在sql中的Mp3文件,并显示在我的aspx页面中。如何????

请帮助…


阅读 255

收藏
2021-03-23

共1个答案

小编典典

以最简单的形式,这就是您将如何获取原始字节的方法,如果不知道您想要的内容,将无法显示更多内容……

private byte[] GetMp3Bytes(string connString)
{
   SqlConnection conn = null;
   SqlCommand cmd = null;
   SqlDataReader reader = null;

   using (conn = new SqlConnection(connString))
   {
      conn.Open();

      using (cmd = new SqlCommand("SELECT TOP 1 Mp3_File FROM MP3_Table", conn))
      using (reader = cmd.ExecuteReader())
      {
          reader.Read();
          return reader["Mp3_File"] as byte[];
      }
   }
}
2021-03-23