byte[] filedatas = (byte[])dr["InqFile"];提醒无法将类型为“Systen.DBNll”的对象强制转换为类型“System.Byte[]”这个该怎么改???
["InqFile"]的内容不能转换呗,为空吧
byte[] filedatas = dr["InqFile"]==System.DBNull.Value?null:(byte[])dr["InqFile"];