c# - 如何通过参数化存储过程填充列表框?

标签 c# sql winforms stored-procedures

我有一个Winforms应用程序和一个employeeListBox、departmentComboBox和一些文本框来显示员工信息,例如fNameTextbox、lNameTextBox...

我想通过departmentCombobox选择的值填充employeelistBox并从employeeListBox填充文本框。我有一个用于选择部门员工的存储过程

ALTER PROCEDURE [dbo].[selectEmployee] 
   @departID int
-- Add the parameters for the stored procedure here
AS
   -- SET NOCOUNT ON added to prevent extra result sets from
   -- interfering with SELECT statements.
   SET NOCOUNT ON;

   -- Insert statements for procedure here
   declare @ErrorCode int



   BEGIN TRANSACTION
      if ( @ErrorCode = 0 )
      Begin
        SELECT 
            EmpID, firstname, lastName, dateOfBirth, Gender, contactNumber, maritalStatus, 
            emailAddress, resentAddress, permanentAddress, nationality, bloodGroup, 
            qualification, Skills, Experience, joiiningdate, probation, departmentID, 
            Salary, paymentMode, active 
        FROM Employee
        WHERE departmentID = @departID

set @ErrorCode = @@error
      End

      if ( @ErrorCode = 0 )
     COMMIT TRANSACTION
      else
         ROLLBACK TRANSACTION

     return @ErrorCode   

为了填充列表框,我编写了这段代码

    private void selectEmployee(int departID)
    {
        string connString = BL.dbConn.ConnStr;
        DataSet ds = new System.Data.DataSet();
        SqlConnection conn = new SqlConnection(connString);
        conn.Open();
        SqlCommand cmd = new SqlCommand();
        cmd.CommandType = System.Data.CommandType.StoredProcedure;
        cmd.CommandText = "dbo.selectEmployee";
        SqlDataAdapter adapter = new SqlDataAdapter(cmd);
        adapter.Fill(ds);
        listBox1.DataSource = ds.Tables[0].DefaultView;
        listBox1.ValueMember = "EmpID";
        listBox1.DisplayMember = "firstname";
        cmd.Parameters.Clear();
        conn.Close();
        conn.Dispose();
    }

我不知道如何将departmentid传递给存储过程,第二如何从列表框数据集中填充文本框?

最佳答案

要传递departmentid,您需要创建sql参数,并且需要附加sql命令将为您完成工作

您在代码中忘记的是da.SelectCommand = cmd;指定选择命令

        SqlConnection conn = new SqlConnection(connString);

        SqlCommand cmd = new SqlCommand();
        SqlDataAdapter da = new SqlDataAdapter();
        DataTable dt = new DataTable();
        try
        {
            conn.Open();
            cmd = new SqlCommand("dbo.selectEmployee", conn );
            cmd.Parameters.Add(new SqlParameter("@departID", value);
            cmd.CommandType = CommandType.StoredProcedure;
            da.SelectCommand = cmd;
            da.Fill(dt);
            dataGridView1.DataSource = dt;
        }
        catch (Exception x)
        {
            MessageBox.Show(x.GetBaseException().ToString(), "Error",
                    MessageBoxButtons.OK, MessageBoxIcon.Error);
        }
        finally
        {
            cmd.Dispose();
            conn.Close();
        }

为了在文本框中填充值,您能否发布代码或示例您想要做什么,以便我可以进一步帮助您

关于c# - 如何通过参数化存储过程填充列表框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10234562/

相关文章:

c# - 使用 MySQL.NET 连接器连接

c# - 如何通过同步实现 C# Winforms 数据库应用程序?

c# - 如何确定字符串的大小并压缩它

sql - pg_restore 清理表 psql

sql - Me.Dirty move 当前选择的记录

MySql 复合索引

c# - 如果出现 DBNULL,我如何使消息框出现

c# - 如何使用Azure Functions将数据发送到服务总线主题?

c# - 如何通过 Windows 命令提示符和 C# 更改一个字符串中的两项

c# - 正则表达式匹配在 c# 中定义的标签