0

我正在为我的项目开发一个图书馆系统。我的顾问要求我计算过期书籍的罚款。我有 3 个文本框,一个用于学生 ID、书名和 isbn,我还有两个日期时间选择器;一个是日期,一个是截止日期。我想要一个创建一个命令,如果借款人没有在到期日归还书,它将计算罚款,并将在我的表“借书”列“罚款”中输入罚款。

这是我的代码:

string constring = ("Data Source=.\\SQLEXPRESS;Integrated Security=True");

        SqlConnection con = new SqlConnection(constring);
        con.Open();
        SqlCommand cmd = new SqlCommand("SELECT  [Student ID], ISBN, Title, Date, [Due Date], Penalty FROM    Borrowbook;", con);


        try
        {
            SqlDataAdapter sda = new SqlDataAdapter();
            sda.SelectCommand = cmd;
            DataTable Records = new DataTable();
            sda.Fill(Records);
            BindingSource bsource = new BindingSource();

            bsource.DataSource = Records;
            dataGridView1.DataSource = bsource;
            sda.Update(Records);


        }
        catch (Exception ex)
        {

            MessageBox.Show(ex.Message);
        }
        if (dateTimePicker2.Value < DateTime.Now)
        {
            cmd.CommandText = "INSERT INTO Borrowbook (Penalty) VALUES  (@Penalty)";
            SqlParameter p1 = new SqlParameter("@Penalty", SqlDbType.Date);
            p1.Value = 50;
            cmd.Parameters.Add(p1);
            cmd.ExecuteNonQuery();

        }
    }

此代码不起作用,但它运行正常并且没有任何错误。但我认为这是我的代码的想法。我将此代码放在按钮中,我的 datagridview 也将显示我的数据。

4

1 回答 1

1

你还没有执行你的查询。

你需要:

cmd.ExecuteNonQuery();

您还需要一个SqlConnection指向正确SQL Server数据库的对象。

作为附加说明,您的数据库模式看起来有点模糊,您怎么知道是谁受到了惩罚?您没有插入任何其他标识符,只是罚款金额。

于 2013-09-08T13:11:53.813 回答