ResiveModule.cs
上传用户:autodoor
上传日期:2022-08-04
资源大小:9973k
文件大小:1k
源码类别:

.net编程

开发平台:

Others

  1. using System;
  2. using System.Data;
  3. using System.Data.SqlClient;
  4. namespace qminoa.DA
  5. {
  6. public class ResiveModule
  7. {
  8. private SqlDataAdapter csCommand;
  9. private SqlConnection conn;
  10. public ResiveModule()
  11. {
  12. csCommand = new SqlDataAdapter();
  13. csCommand.SelectCommand =new SqlCommand();
  14. conn      = new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]);
  15. }
  16. public DataSet FillPerson(int DepartID)
  17. {
  18. SqlCommand command  = csCommand.SelectCommand;
  19. command.CommandText = "Msg_GetEmpByDep";
  20. command.CommandType = CommandType.StoredProcedure;
  21. SqlParameter para   = new SqlParameter("@DepartID",SqlDbType.Int);
  22. para.Value = DepartID;
  23. command.Parameters.Add(para);
  24. command.Connection  = conn;
  25. DataSet data        = new DataSet();
  26. csCommand.Fill(data,"person");
  27. return data;
  28. }
  29. }
  30. }