0
我想從表中的VARBINARY(max)列的字節數組: -如何在C#中從數據庫檢索字節數組?
SqlDataAdapter sda=new SqlDataAdapter("select * from mine", sqlconn);
DataTable dt=new DataTable();
sda.Fill(dt);
string fileName=dt.Rows[0][0].ToString();
byte[] file = (byte[])dt.Rows[0][1];
但我得到一個異常:無法轉換類型「System.String」的對象鍵入「系統。字節[]'。
System.Text.UTF8Encoding.ASCII.GetBytes(dt.Rows [0] [1]); – Rangesh
這聽起來像列是字符串類型,你的表定義是什麼? – VahidNaderi