标签: delphi date ms-access delphi-7
我正在尝试使用日历作为输入来向数据库添加新条目。问题是,calendar1.CalendarDate;返回一个字符串值,但数据库(使用Access)具有日期格式。是否有任何函数将字符串转换为日期格式或我使用了错误的函数(.CalendarDate)?
calendar1.CalendarDate;
.CalendarDate
版本是Delphi 7。
答案 0 :(得分:0)
TCalendar.CalendarDate属性返回TDateTime,而不是String。例如,您可以将其分配给TField.AsDateTime属性。
TCalendar.CalendarDate
TDateTime
String
TField.AsDateTime