任务目标
在智慧社区商超管理系统中,后台管理人员为系统添加新的商品基本信息是一项基础工作。请设计并制作智慧社区商超管理系统的商品信息录入界面,并实现其功能。
1.配置文件中配置连接字符串
(1)在“解决方案资源管理器”中的“引用”条目上右键添加 System.Configuration
(2)修改项目的 App.config 文件,添加如下内容
<connectionStrings>
<add name="SuperMarketSales"
connectionString="Data Source=.;Initial Catalog=SuperMarketSales;Integrated Security=True"
providerName="System.Data.SqlClient" />
</connectionStrings>
(3)在需要连接数据库的窗口代码中添加 using System.Configuration;
(4)按如下语法引用连接字符串
<connectionStrings>
<add name="SuperMarketSales"
connectionString="Data Source=.;Initial Catalog=SuperMarketSales;Integrated Security=True"
providerName="System.Data.SqlClient" />
</connectionStrings>
2.创建商品信息表
GOODS表3.编码实现商品信息存入数据库表
(1)编写添加商品信息表数据SQL语句:
例如:
insert into GOODS2(ID, NAME, PRICE, SPEC)
values('9787302428220', 'C#程序设计项目化教程', 29.5, '实践型教程')
4.编码实现商品信息存入数据库表
设计好录入信息界面MDI应用程序的步骤:
设置父窗体
将要作为“父窗体” 的窗体的IsMdiContainer属性设置为true
(通过属性窗口设计即可)。
设置子窗体
将要作为“子窗体” 的窗体的MdiParent属性属性指定为“父窗体”。
只有通过代码,在实例化“子窗体”后设置,如下:
FormChild formChild1 = new FormChild(); // 创建子窗体对象
formChild1.MdiParent = this; // 设置子窗体的父窗体为当前窗体
formChild1.Show(); // 在MDI中显示子窗体
编写代码
在点击录入按钮中编写代码,代码如下:
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.ToString());
}
finally
{
sqlConn.Close();
}
实现效果
编写增强功能的录入商品信息界面
(1). 创建数据库表
DOODS表 SUPPIER表(2). 设计并制作商品信息录入界面
录入商品界面
(3)ComboBox数据源绑定
ComboBox数据源绑定的三个要素:
设置DataSource属性
设置DisplayMember属性
设置ValueMember属性
this.comboBox1.DataSource = ds.Tables["MySupplier"];
this.comboBox1.DisplayMember = "NAME";
this.comboBox1.ValueMember = "CODE";
在登陆界面load中添加代码:
String connStr = ConfigurationManager.ConnectionStrings["SuperMarketSales"].ConnectionString;
SqlConnection sqlConn = new SqlConnection(connStr);
try
{
// 连接数据库
sqlConn.Open();
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;
// 绑定数据源
}
catch (Exception exp)
{
MessageBox.Show("访问数据库错误:" + exp.Message);
}
finally
{
sqlConn.Close();
}
(4)在点击录入按钮中编写代码,代码如下:
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();
int supplier = int.Parse(this.cbb_Supplier.SelectedValue.ToString());
// 连接字符串,注意与实际环境保持一致
String connStr = ConfigurationManager.ConnectionStrings["SuperMarketSales"].ConnectionString;
SqlConnection sqlConn = new SqlConnection(connStr);
try
{
// 连接数据库
sqlConn.Open();
// 构造命令
String sqlStr = "insert into GOODS(ID, NAME, PRICE, SPEC, REMARK, SUPPLIER) values(@id, @name, @price, @spec, @remark, @supplier)";
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));
cmd.Parameters.Add(new SqlParameter("@supplier", supplier));
// 将命令发送给数据库
int res = cmd.ExecuteNonQuery();
// 根据返回值判断是否插入成功
if (res != 0)
{
MessageBox.Show("商品信息录入成功");
}
else
{
MessageBox.Show("商品信息录入失败");
}
}
catch (Exception exp)
{
MessageBox.Show("访问数据库错误:" + exp.Message);
}
finally
{
sqlConn.Close();
}
网友评论