在C#中调用存储过程
调用存储过程时主要会涉及到两种状况:一种是执行而不需要返回值,例如删除、修改等;另一种是执行并且要求有返回值,例如查询。在C#中调用存储过程时主要会用到两个类SqlCommand和SqlDataAdapter,SqlCommand类的CommandType属性可以获取或设置要对数据源执行的Transact-SQL语句或存储过程。当SqlCommand与存储过程关联起来之后就可以通过SqlCommand类来执行。另一种执行方法则是通过SqlDataAdapter类的Fill方法,SqlDataAdapter类的Fill方法不仅会执行存储过程同时会将结果放入结果集中。
程序代码如下。
private void button1_Click(object sender, EventArgs e)
{
ClsDB.ClsDBProcControl CBDP = new OptDB.ClsDB.ClsDBProcControl();
CBDP.str_Name = this.textBox2.Text.Trim().ToString();
CBDP.str_Sex = this.textBox3.Text.Trim().ToString();
if (CBDP.Insert_Proc(CBDP))
{
MessageBox.Show("插入成功");
CBDP.str_Name =string.Empty;
CBDP.str_Sex = string.Empty;
this.dataGridView1.DataSource = CBDP.select_Proc(CBDP).Tables[0].DefaultView;
}
}
单击【查询信息】按钮时同样是先将姓名、性别信息赋给属性str_Name与属性str_Sex,然后再调用select_Proc方法,select_Proc方法将返回一个DataSet对象用于结果显示给用户。代码如下:
private void button2_Click(object sender, EventArgs e)
{
ClsDB.ClsDBProcControl CBDP = new OptDB.ClsDB.ClsDBProcControl();
CBDP.str_Name = this.textBox2.Text.Trim().ToString();
CBDP.str_Sex = this.textBox3.Text.Trim().ToString();
this.dataGridView1.DataSource = CBDP.select_Proc(CBDP).Tables[0].DefaultView;
}
t_People表对应实体,主要通过GET,SET访问器定义属性str_Name与属性str_Sex。代码如下:
#region//表对应的实体
private string strName;
public string str_Name
{
get
{
return this.strName;
}
set
{
strName = value;
}
}
private string strSex;
public string str_Sex
{
get
{
&n
补充:软件开发 , C# ,