G
gmwing
Unregistered / Unconfirmed
GUEST, unregistred user!
在SQL SERVER2000中,我在表中定义了一字段为datatime类型,但我在赋值时只赋予时间值(如 17:53:40),
当我在DELPHI中使用ADOQUERY查询返回该值时,总是返回多了此年月日的数字(如:1899-12-30 17:53:40),
其实我只想返回这字段的值是17:53:40。不知道如何解决?
with datamodule1.adoquery1 do
begin
close;
sql.clear;
sql.add('select hctime from chcdjb where hcdate=:m_hcdate');
parameters[0].Value:=datetimepicker1.Date;
open;
end;
当我在DELPHI中使用ADOQUERY查询返回该值时,总是返回多了此年月日的数字(如:1899-12-30 17:53:40),
其实我只想返回这字段的值是17:53:40。不知道如何解决?
with datamodule1.adoquery1 do
begin
close;
sql.clear;
sql.add('select hctime from chcdjb where hcdate=:m_hcdate');
parameters[0].Value:=datetimepicker1.Date;
open;
end;