F
flyman2
Unregistered / Unconfirmed
GUEST, unregistred user!
我在一程序中的有如下的sql查询语句:
Close;
SQL.Clear;
SQL.Add('select * from repair');
SQL.Add('where selfno=:selfno1 and no<>dbedit1.text and dbedit8.text>=infodate and dbedit8.text<=filldate');
open;
结果程序首先提示invalid use of keyword token:no<>dbedit1.text信息,去掉
no(repair中的字段)<>dbedit1.text的条件,又显示invalid field name text信息,
我想是针对dbedit8.text的,这两处错误是何原因,该如何解决。望各位大侠不吝赐教!!!
Close;
SQL.Clear;
SQL.Add('select * from repair');
SQL.Add('where selfno=:selfno1 and no<>dbedit1.text and dbedit8.text>=infodate and dbedit8.text<=filldate');
open;
结果程序首先提示invalid use of keyword token:no<>dbedit1.text信息,去掉
no(repair中的字段)<>dbedit1.text的条件,又显示invalid field name text信息,
我想是针对dbedit8.text的,这两处错误是何原因,该如何解决。望各位大侠不吝赐教!!!