L
lixd
Unregistered / Unconfirmed
GUEST, unregistred user!
......
strsql='select * from doc where recdate between :startdate and :enddate';
query1.close;
query1.sql.clear;
query1.sql.add(strsql);
query1.sql.param[0] := strtodatetime('2002-1-1');//此处字符串转换成日期时间的函数记不太清了,可能不是这样写的。
query1.sql.param[1] := strtodatetime('2002-12-31');
query1.active;
.....
结果没有找到一条记录,但数据库中却有在这段时间内的记录。
strsql='select * from doc where recdate between :startdate and :enddate';
query1.close;
query1.sql.clear;
query1.sql.add(strsql);
query1.sql.param[0] := strtodatetime('2002-1-1');//此处字符串转换成日期时间的函数记不太清了,可能不是这样写的。
query1.sql.param[1] := strtodatetime('2002-12-31');
query1.active;
.....
结果没有找到一条记录,但数据库中却有在这段时间内的记录。