我有一种将数据插入 sq-lite 数据库的方法
public long InsertDetails(int Id,String BatchName,double Weight,
double Yield)
{
ContentValues InsertContentValues = AssesmentInsertValues(Id,BatchName,Weight,Yield);
return this.data.insert("tb_LabAssessment", null, InsertContentValues);
}
从我的主类中,我将值作为参数传递给上述函数,在某些情况下,我想将权重和产量作为空值传递。
String batchname;
double weight;
double Yield;
dbAdapter.InsertAssesmentDetails(objClsProduct.getId(),batchname,weight,Yield)
我如何在这里将重量和产量的值传递为空。