为什么delphi中的日期转换成sql server中的日期的时候总会出错啊?怎样才能让这两个软件的时间方式统一起来啊?通过日期查记录该怎么查啊?
帮我看一下下面这段程序吧://查询当天所有的销售记录 dt:=datetimetostr(date);sqlstr2:='select * from bookout where DT='''+dt+'''';adoquery1.Close;adoquery1.SQL.Clear;adoquery1.sql.Add(sqlstr2);adoquery1.Open ;