如何将数据库中得到的数据显示出来

2024年11月17日 08:15
有1个网友回答
网友(1):

//定义一个函数利用存储过程从数据库中读出数据.当然也可以不用存储过程
public static System.Data.DataRow chaxun1(string Name,string Type)
{
System.Data.SqlClient.SqlConnection cn = new SqlConnection(ConnectionString.Connection.ConnectionString);
SqlDataAdapter da = new SqlDataAdapter();
SqlCommand cmd = new SqlCommand();
da.SelectCommand = cmd;
cmd.Connection = cn;
cmd.CommandType = CommandType.StoredProcedure;
cmd.CommandText = "cheng1";

SqlParameter name = new SqlParameter("@名称", SqlDbType.NVarChar);
SqlParameter type = new SqlParameter("@型号", SqlDbType.NVarChar);

name.Value = Name;
cmd.Parameters.Add(name);

type.Value = Type;
cmd.Parameters.Add(type);

DataSet ds = new DataSet();
da.Fill(ds, "MyTable");

DataTable dTable = ds.Tables[0];
DataRow dtRow = dTable.Rows[0];
return dtRow;//返回读取的这一行数据

}

//调用函数,将值赋给要显示它的控件
this.label6.Text = chaxun1(comboBox1.Text,comboBox2.Text)["数量"].ToString();