日期的比较
DataModule35->qry1->SQL->Add("Select * from Card where CompareDateTime(StrToDateTime(EndTime),FormatDateTime("yyyy-mm-dd",Now())) <= 0");
我用数据库里面记录的日期与当前的日期比较,为什么这样不行,会出现错误?
[解决办法]
sql语句和c++要分开的
[解决办法]
sql中可以直接使用符合日期格式的字符串与日期类型比较
比如:
select *from table where startime>'2011-3-1'
[解决办法]
直接在SQL里判断
sql = " Select * from Card where EndTime <= GetDate()"
qry1->SQL->Add(sql)