你好。
在本书的第六章ERP系统中有一个FormBSBom.cs 函数如下, 里面有用到一个InvenBom(倒数第八行), 请问是什么意思,我在数据库中找不到这个字段也找不到这个字段。 谢 谢 ,代码块如下。
private void BindDataGridView(string strInvenCode)
{
string strSql = null;
strSql = "SELECT BSBom.MatInvenCode,BSInven.InvenName,BSInven.SpecsModel,BSInven.MeaUnit,BSBom.Quantity ";
strSql += "FROM BSBom,BSInven ";
strSql += "WHERE BSBom.MatInvenCode = BSInven.InvenCode and BSBom.ProInvenCode = '" + strInvenCode + "'";
//MessageBox.Show(strSql);
try
{
this.dgvStructInfo.DataSource = db.GetDataSet(strSql, "InvenBom").Tables["InvenBom"];
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "软件提示");
throw ex;
}
}