美文网首页
2.7商品录入界面

2.7商品录入界面

作者: 水木山河 | 来源:发表于2018-12-06 15:35 被阅读0次

    商超系统的商品录入程序

    效果图

    /// xxxs.gif

    画面所表达的功能为 1:点击录入商品信息 2:弹出录入商品信息的界面 3:输入各商品的属性 4:点击录入弹出提示窗口,就可以了。

    ADO.NET 的流程


    如图数据属于双向传输,其中相当于一个内存中的数据库,保存了数据库表的镜像。一方面加快了访问速度,另一方面减少了数据库负荷。


    捕获.PNG

    此为数据表的结构,为录入程序提供数据及仓库。

    ComboBox数据绑定流程

            {
                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();
    
                    // 构造命令
                    String sqlStr = "insert into GOODS2(ID, NAME, PRICE, SPEC, REMARK) values(@id, @name, @price, @spec, @remark)";
                    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("商品信息录入失败");
                    }
                }
                catch (Exception exp)
                {
                    MessageBox.Show("访问数据库错误:" + exp.Message);
                }
                finally
                {
                    sqlConn.Close();
                }
            }
    

    数据代码实现其ComboBox数据绑定流程。

    相关文章

      网友评论

          本文标题:2.7商品录入界面

          本文链接:https://www.haomeiwen.com/subject/jupecqtx.html