ADO.NET应用
程序员文章站
2024-01-12 16:38:58
...
//========================================增删改查==================================
//一、select
//二、insert
//三、update
//四、delect
//=======================================存储过程===================================
//一、存储过程数据集查询
public static DataTable QueryMana(string v_GroupID,string v_ParenyDeptID)
{
DataSet ds = null;
string sql = null;
if(!string.IsNullOrEmpty(v_GroupID)&&(v_ParentDeptID!="ALL"))
{
string sp = "KPI"
SqlConnection con = new SqlConnection(v_DbconnStr);
SqlCommand com = new SqlCommand(sp,con);
com.CommandType = CommandType.StoredProcedure;
com.Parameters.Add("@GroupID",SqlDbType.NVarChar,10);
com.Parameters["@GroupID"].Value = v_GroupID;
com.Parameters.Add("@ParentDeptID",SqlDbType,10);
com.Parameters["@ParentDeptID"].Value = v_ParenyDeptID
com.Connection.Open();
SqlDataAdapter da = new SqlDataAdapter(com);
ds = new DataSet();
da.Fill(ds);
}
return ds.Tables[0];
}
上一篇: ADO.net