1
我想在varbinary(max)中插入空值,但它返回錯誤。無法在varbinary(max)中插入空值,但出現錯誤:不允許將數據類型nvarchar隱式轉換爲varbinary(max)
我想下面的代碼保存照片,當我附上照片它沒有任何問題保存。當沒有照片時會拋出錯誤。
允許從數據類型nvarchar到varbinary(max)的隱式轉換不是 。使用CONVERT函數來運行此查詢。
protected void Button3_Click(object sender, EventArgs e)
{
newphoto pat = new newphoto();
pat.id = id.Text;
byte[] photo = null;
if (Attch.HasFile)
{
Stream fs2 = Attch.PostedFile.InputStream;
BinaryReader br2 = new BinaryReader(fs2);
pat.photo = br2.ReadBytes((Int32)fs2.Length);
}
else
{
pat.photo = null;
}
pat.Addfile()
}
public bool Addfile()
{
Parameters.Clear();
Parameters.AddWithValue("@pat_id", id);
if (photo == null)
{
Parameters.Add("@photo", SqlDbType.VarBinary, -1);
Parameters["@photo"].Value = DBNull.Value;
}
else
{
Parameters.AddWithValue("@photo", photo);
}
return FetchNonQuery(@"insert into mr_Info (@pat_id ,@photo)" +
" Values (@pat_id ,@photo)");
}
protected bool FetchNonQuery(string CmdQuery)
{
bool result = false;
using (SqlConnection myConnection = DBConnection)
{
SqlCommand myCommand = new SqlCommand(CmdQuery, myConnection);
myCommand.CommandType = CommandType.Text;
//Set Parameters
foreach (SqlParameter Parameter in _parameters)
{
myCommand.Parameters.AddWithValue(Parameter.ParameterName, Parameter.Value);
}
//Execute the command
myConnection.Open();
if (myCommand.ExecuteNonQuery() > 0)
{
result = true;
}
myConnection.Close();
}
return result;
}
試圖更改添加行_myCommand.Parameters.Add(Parameter); _ – Steve
中的命令的參數也是INSERT命令錯誤。您使用字段名稱和值的參數。您應該寫入_INSERT INTO(pat_id,photo)VALUES(@pat_id,@ photo)_ – Steve
可能重複[參數varbinary數據類型中的空值](http://stackoverflow.com/questions/18170985/null-value-in -a-parameter-varbinary-datatype) –