我今天的代码存在问题。每当我使用此方法将Product添加到本地数据库时,它都会抛出一个异常,内容为“无法将对象从DBNull强制转换为其他类型”。在做了一些研究之后,我相信我的问题在于AddProduct方法中的insertCmd参数,但我似乎无法弄清楚究竟是什么导致了它。我创建的程序仍然正常运行(它添加了产品,然后可以成功选择),但是当我添加产品时,它似乎只是继续抛出此异常。
任何人都可以提供任何有关问题在我的代码中的位置的见解吗?如果您需要更多信息,请随时提出。感谢您的时间和帮助。
public static bool AddProduct(Product product)
{
SqlConnection connect = MMABooksDB.GetConnection();
string insert = "INSERT Products " + "(ProductCode, Description, UnitPrice) " + "VALUES (@code, @description, @price)";
SqlCommand insertCmd = new SqlCommand(insert, connect);
insertCmd.Parameters.AddWithValue("@code", product.code);
insertCmd.Parameters.AddWithValue("@description", product.description);
insertCmd.Parameters.AddWithValue("@price", product.price);
try
{
connect.Open();
insertCmd.ExecuteNonQuery();
string selectStatement =
"SELECT IDENT_CURRENT('Products') FROM Products";
SqlCommand selectCommand = new SqlCommand(selectStatement, connect);
int ProductCode = Convert.ToInt32(selectCommand.ExecuteScalar());
return true;
}
catch (SqlException ex)
{
throw ex;
}
finally
{
connect.Close();
}
}
这是产品类
public class Product
{
public string code;
public string description;
public decimal price;
public Product() { }
public Product(string code, string description, decimal price)
{
this.Code = code;
this.Description = description;
this.Price = price;
}
public string Code
{
get
{
return code;
}
set
{
code = value;
}
}
public string Description
{
get
{
return description;
}
set
{
description = value;
}
}
public decimal Price
{
get
{
return price;
}
set
{
price = value;
}
}
public string GetDisplayText()
{
return code + ", " + price.ToString("c") + ", " + description;
}
public string GetDisplayText(string sep)
{
return code + sep + price.ToString("c") + sep + description;
}
}
答案 0 :(得分:0)
如果产品被添加,我会假设无法转换来自int ProductCode = Convert.ToInt32(selectCommand.ExecuteScalar());
我会添加一个检查以查看该缩放器是否返回null。
答案 1 :(得分:0)
int ProductCode; //declare variable
object dbProductID = selectCommand.ExecuteScalar(); //get the result into object
if(dbProductID !=null || dbProductID != DBNull.Value) //check if it is null
ProductCode = 0; //assign some default value here if it has no productid
else
ProductCode = Convert.ToInt32(dbProductID);//if its has productid cast it into int