0

我一直在努力解决这个问题超过 2 小时,因此非常感谢任何帮助

  public void setAppointment(int studentID, DateTime appt)
    {
        connection.Open();

        string sqlStatement3 = "UPDATE dbo.students SET appointmentDate = '" + appt.Date.ToString("yyyy-MM-dd HH:mm:ss") + "' WHERE ID = " + studentID + ";";

        OleDbCommand updateCommand = new OleDbCommand(sqlStatement3, connection);            
        updateCommand.ExecuteNonQuery();

        connection.Close();
    }

所以基本上这样做是将日期时间插入到保持月份和日期格式相同的 sql server 表中,以避免区域设置妨碍。

唯一的问题是时间仍然是 00:00:00。即使当我调试代码时,“appt”显示 28/06/2013 09:30:00

4

4 回答 4

10

试试下面

 public void setAppointment(int studentID, DateTime appt)
        {
            connection.Open();

            string sqlStatement3 = "UPDATE dbo.students SET appointmentDate = ? WHERE ID = ?";

            OleDbCommand updateCommand = new OleDbCommand(sqlStatement3, connection);
            updateCommand.Parameters.AddWithValue("@p1", appt);
            updateCommand.Parameters.AddWithValue("@p2", studentID);
            updateCommand.ExecuteNonQuery();

            connection.Close();
        }

但!

你说它是 sql server 但你为什么使用OleDbCommand

如果是sql server,试试下面

public void setAppointment(int studentID, DateTime appt)
{
    using (SqlConnection con = new SqlConnection(connectionString))
    using (SqlCommand cmd = con.CreateCommand())
    {
        cmd.CommandText = "UPDATE dbo.students SET appointmentDate = @appointmentDate WHERE ID = @ID";
        con.Open();
        cmd.Parameters.AddWithValue("@appointmentDate", appt);
        cmd.Parameters.AddWithValue("@ID", studentID);
        cmd.ExecuteNonQuery();
    }
}
于 2013-06-09T19:31:41.853 回答
0

我希望您已经从上一篇文章中解决了您的问题,并且我同意将 SQL 语句与参数一起使用。

如果您的应用程序日期时间格式是固定的,那么硬编码没有害处,但从 web.config 文件中获取日期时间格式将是很好的代码。这将帮助您的代码与整个项目保持一致。

代替

ToString("yyyy-MM-dd HH:mm:ss")

ToString(配置值)

于 2013-06-09T21:04:21.130 回答
0

第 5 行。更改

...  appt.Date.ToString(...

... appt.ToString(...
于 2013-06-09T19:30:48.217 回答
0

太晚了,但是对于你的问题:试试下面的代码。

public void setAppointment(int studentID, DateTime appt)
        {

connection.Open();

    string sqlStatement3 = "UPDATE dbo.students SET appointmentDate = '" + "CONVERT(datetime, '" + appt.Date.ToString("yyyy-MM-dd HH:mm:ss")  + "', 103)" + "' WHERE ID = " + studentID + ";";

    OleDbCommand updateCommand = new OleDbCommand(sqlStatement3, connection);            
    updateCommand.ExecuteNonQuery();

    connection.Close();
}
于 2015-08-14T08:19:46.250 回答