1. 录入界面运行效果:
2.画面主要功能:
(1).首先查询数据表GOODS中的商品信息,然后运行窗体程序,使用数据库中EMPLOYEE数据表中的库管员数据ID进行登录,登陆后打开录入商品信息窗体,按照指定格式录入商品信息(每个商品条码不同),录入成功后再次在数据库中查询GOODS表中数据。
3. ADO.NET插入数据库流程:
1)导入命名空间;
2)定义数据库连接字符串,创建Connection对象;
3)打开连接;
4)利用Command对象的ExecuteNonQuery()方法执行Insert语句;
5)通过ExecuteNonQuery()方法返回值反对是否修改成功,并在界面上提示;
6)关闭连接。
4. 功能迭代过程:
界面无外键时没有供应商的选项,用GOODSINFO表时在这个数据库表中是没有外键的,通过添加供应商这一列的外键实现从数据库GOODS表中直接用数据库中SUPPLIER表中的数据。
5. Combobox数据绑定流程:
1)连接数据库
2)绑定数据源
3)构造查询命令
4)将该查询过程绑定到DataAdapter
5)自定义一个表(MySupplier)来标识数据库的SUPPLIER表
6)指定ComboBox的数据源为DataSet的MySupplier
6. 主要代码:
1)Combobox数据源绑定:
{
String connStr = ConfigurationManager.ConnectionStrings["SuperMarketSales"].ConnectionString;
SqlConnection sqlConn = new SqlConnection(connStr);
try
{
// 连接数据库
sqlConn.Open();
// 绑定数据源
}
catch (Exception exp)
{
MessageBox.Show("访问数据库错误:" + exp.Message);
}
finally
{
sqlConn.Close();
}
}
// 构造查询命令
String sqlStr = "select * from SUPPLIER order by CODE";
SqlCommand cmd = new SqlCommand(sqlStr, sqlConn);
// 将该查询过程绑定到DataAdapter
SqlDataAdapter adp = new SqlDataAdapter();
adp.SelectCommand = cmd;
// 将DataSet和DataAdapter绑定
DataSet ds = new DataSet();
// 自定义一个表(MySupplier)来标识数据库的SUPPLIER表
adp.Fill(ds, "MySupplier");
// 指定ComboBox的数据源为DataSet的MySupplier表
this.comboBox1.DataSource = ds.Tables["MySupplier"];
this.comboBox1.DisplayMember = "NAME";
this.comboBox1.ValueMember = "CODE";
this.comboBox1.SelectedIndex = 0;
2. 增强功能的录入商品信息界面
String id = this.tb_Id.Text.Trim();
String name = this.tb_Name.Text.Trim();
float price = float.Parse(this.tb_Price.Text.Trim());
String spec = this.tb_Spec.Text.Trim();
String remark = this.tb_Remark.Text.Trim();
// 连接字符串,注意与实际环境保持一致
String connStr = ConfigurationManager.ConnectionStrings["SuperMarketSales"].ConnectionString;
SqlConnection sqlConn = new SqlConnection(connStr);
try
{
// 连接数据库
sqlConn.Open();
}
catch (Exception exp)
{
MessageBox.Show(“访问数据库错误:” + exp.Message);
}
finally
{
sqlConn.Close();
}
// 构造命令
String sqlStr = "insert into GOODS(ID, NAME, PRICE, SPEC, REMARK) values(@id, @name, @price, @spec, @remark)";
(多了供应商字段,因此insert语句需要修改)
SqlCommand cmd = new SqlCommand(sqlStr, sqlConn);
// SQL字符串参数赋值
cmd.Parameters.Add(new SqlParameter("@id", id));
cmd.Parameters.Add(new SqlParameter("@name", name));
cmd.Parameters.Add(new SqlParameter("@price", price));
cmd.Parameters.Add(new SqlParameter("@spec", spec));
cmd.Parameters.Add(new SqlParameter("@remark", remark));
// 将命令发送给数据库
int res = cmd.ExecuteNonQuery();
// 根据返回值判断是否插入成功
if (res != 0)
{
MessageBox.Show("商品信息录入成功");
}
else
{
MessageBox.Show("商品信息录入失败");
}