欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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];
}
相关标签: VS实战