我遇到了C#和MS Access的问题,我希望以下调用返回一条记录:
c = Shift.Get(ProfileID, Start, null, null, null, null, null, null);
其中Start是“2015年1月7日下午3:30:00”,ProfileID是“****** 16732”,方法是:
public static ObservableCollection<Shift> Get(string profileID, DateTime? start,
DateTime? stop, string fullName, bool? closed, bool? archived = null,
Database db = null, string sort="ASC")
{
OleDbCommand cmd = new OleDbCommand(
"SELECT profiles.profile_id, profiles.full_name, shifts.start, " +
"shifts.stop, shifts.start_log, shifts.stop_log, shifts.notes, " +
"shifts.closed, shifts.archived FROM shifts, profiles WHERE " +
(profileID != null ? "(shifts.profile_id=@profile_id) AND " : "") +
(start.HasValue ? "(shifts.start>=@start) AND " : "") +
(stop.HasValue ? "(shifts.stop<=@stop) AND " : "") +
(fullName != null ? "profiles.full_name=@full_name AND " : "") +
(closed.HasValue ? "shifts.closed=@closed AND " : "") +
(archived.HasValue ? "shifts.archived=@archived AND " : "") +
"(shifts.profile_id=profiles.profile_id) " +
"ORDER BY shifts.start " + sort
);
if (profileID != null)
cmd.Parameters.AddWithValue("@profile_id", profileID);
if (start.HasValue)
cmd.Parameters.AddWithValue("@start", start.Value.ToString());
if (stop.HasValue)
cmd.Parameters.AddWithValue("@stop", stop.Value.ToString());
if (fullName != null)
cmd.Parameters.AddWithValue("@full_name", fullName);
if (closed.HasValue)
cmd.Parameters.AddWithValue("@closed", closed.Value);
if (archived.HasValue)
cmd.Parameters.AddWithValue("@archived", archived.Value);
....
}
鉴于以下班次表:
profile_id start stop start_log stop_log notes closed archived
******45544 1/7/2015 3:30:00 PM 1/2/2015 11:30:00 PM 1/7/2015 3:06:02 PM 1/2/2015 11:32:40 PM "" Yes No
******12956 1/7/2015 3:30:00 PM 1/2/2015 9:00:00 PM 1/7/2015 3:08:10 PM 1/2/2015 9:15:29 PM "" Yes No
******17392 1/7/2015 2:00:00 PM 1/2/2015 11:30:00 PM 1/7/2015 1:46:07 PM 1/2/2015 11:33:09 PM "" Yes No
******16732 1/7/2015 3:30:00 PM 1/2/2015 6:30:00 PM 1/7/2015 3:08:38 PM 1/2/2015 6:35:03 PM "" Yes No
******15503 1/7/2015 2:00:00 PM 1/2/2015 10:00:00 PM 1/7/2015 1:46:43 PM 1/2/2015 10:01:24 PM "" Yes No
******14536 1/7/2015 3:30:00 PM 1/2/2015 11:30:00 PM 1/7/2015 3:04:12 PM 1/2/2015 11:35:19 PM "" Yes No
然而,我得到了没有记录的回报,也没有错误。这是令人惊讶的,因为我在SQL语句的WHERE子句中有shifts.start >= @start
并且数据存在。
注意,ProfileID是模糊的,因为它是敏感的,并且开始日期在停止日期之后开始,这显然是错误的,但这是测试数据,应该与结果无关。如果未提供db,则存在默认数据库连接。
我必须做一些编辑,希望我没有在任何地方输错。
任何线索?
答案 0 :(得分:0)
您需要将DateTime作为DateTime对象而不是字符串传递(删除.ToString()。 这样,该命令将正确解析DateTime对象,因此Access将其识别为DateTime。