MS Access存储不正确的DateTime.MinValue?

时间:2014-08-06 11:58:31

标签: c# ms-access datetime

DateTime.MinValue存储到MS Access中的字段(作为日期/时间类型)时出现问题。在存储到数据库之前打印出来,我得到“1/1/0001 12:00:00 AM”,这是预期的。但是,从数据库中检索相同的值后,我得到“1/1/2001 12:00:00 AM”(注意2001年而不是第1年)。

这显然是不正确的!有人有什么想法吗?

注意,我使用DateTime.MinValue作为有人建议的无效日期/时间,因为DateTime不能为空值。

写入数据库的代码是:

    public static bool StartNow(string profileID, string startNotes)
    {
        DateTime now = DateTime.Now;

        OleDbCommand cmd = new OleDbCommand("SELECT * FROM shifts WHERE profile_id=@profile_id AND closed=false;");
        cmd.Parameters.AddWithValue("@profile_id", profileID);

        // A new shift should NEVER be started with another open shift.
        OleDbDataReader reader = Database.Read(cmd);
        if (reader.HasRows)
            return false;

        cmd = new OleDbCommand("INSERT INTO shifts(profile_id, start, stop, start_log, stop_log, start_notes, stop_notes, closed) VALUES(@profile_id, @start, @stop, @start_log, @stop_log, @start_notes, @stop_notes, @closed);");
        cmd.Parameters.AddWithValue("@profile_id", profileID);
        cmd.Parameters.AddWithValue("@start", RoundUp(now, 30).ToString());
        cmd.Parameters.AddWithValue("@stop", DateTime.MinValue);
        cmd.Parameters.AddWithValue("@start_log", now.ToString());
        cmd.Parameters.AddWithValue("@stop_log", DateTime.MinValue);
        cmd.Parameters.AddWithValue("@start_notes", startNotes);
        cmd.Parameters.AddWithValue("@stop_notes", "");
        cmd.Parameters.AddWithValue("@closed", false);
        // TODO: need to set default values for stop, stop_log and stop_notes
        return Database.Write(cmd) == 1 ? true : false;
    }

这是在日期和时间回读的代码:

    public static List<ShiftView> TodaysShifts()
    {
        List<ShiftView> shifts = new List<ShiftView>();

        // INFO: Not intended to retrieve a lot of records as there is no caching....
        OleDbCommand cmd = new OleDbCommand("SELECT profiles.profile_id, profiles.full_name, shifts.start, shifts.stop, shifts.start_log, shifts.stop_log, shifts.start_notes, shifts.stop_notes FROM shifts, profiles WHERE (shifts.start>=@today) AND (shifts.profile_id=profiles.profile_id);");
        cmd.Parameters.AddWithValue("@today", DateTime.Today);
        OleDbDataReader reader = Database.Read(cmd);

        while(reader.Read())
        {
            shifts.Add(new ShiftView(
                reader.GetString(reader.GetOrdinal("profile_id")), 
                reader.GetString(reader.GetOrdinal("full_name")),
                reader.GetDateTime(reader.GetOrdinal("start")),
                reader.GetDateTime(reader.GetOrdinal("stop")),
                reader.GetDateTime(reader.GetOrdinal("start_log")),
                reader.GetDateTime(reader.GetOrdinal("stop_log")),
                reader.GetString(reader.GetOrdinal("start_notes")),
                reader.GetString(reader.GetOrdinal("stop_notes"))
                ));
        }

        return shifts;
    }

2 个答案:

答案 0 :(得分:2)

在Microsoft Access中“有效日期值范围为-657,434(公元100年1月1日)至2,958,455(公元9999年12月31日)。有效时间值范围为.0到.9999或23:59: 59。“(参考:here。)因此,您无法在访问Date/Time字段中存储”1/1/0001 12:00:00 AM“。

答案 1 :(得分:1)

正如Jon Skeet所说: -

  

基本上,不要使用DateTime.MinValue来表示缺失值。   您不能在SQL Server DateTime字段中使用DateTime.MinValue作为SQL   服务器的最小值为1753年的开始。

     

相反,让你的财产成为Nullable(又名   DateTime?),并在没有值时将其设置为null。也做   确保您的数据库字段可以为空。那你就需要确定一下   该null最终作为数据库中的NULL值。究竟怎么样   这样做取决于您的数据访问。

您可以尝试使用 SqlDateTime.MinValue 而不是 DateTime.MinVaue