我有一个由我使用 UTF8 编码的 xml 标记组成的字符串。当我将它插入到 sql server 图像文件中时,它只插入前 28 个字节或字符。
这是我的代码:
UTF8Encoding utf8 = new UTF8Encoding();
byte[] encodedBytes = utf8.GetBytes(file.Value);
string update = String.Format("Update xdpath set content = '{0}' where dpath = '{1}';", encodedBytes, file.Key);
SqlCommand com = new SqlCommand(update, conn);
com.ExecuteNonQuery();
结果是图像类型的内容字段:0x53797374656D2E427974655B5D。
文件中有非常冗长的内容。请帮忙。