[ paradox ]
insert문 사용시 에러입니다.
에러 내용 : invalid use of keyword
token : where
line number : 1
close ;
sql.clear ;
sql.add('insert into kooknai (BALSIN,WCODE,BOGOM) '+
'values(:BALSIN,:WCODE,:BOGOM) where WCODE<> :WCODE or BOGOM<> :BOGOM');
ParamByName('WCODE').AsString := edit1.text ;
ParamByName('BALSIN').AsString := edit2.text ;
ParamByName('BOGOM').AsString := edit3.text ;
execsql ;
같은데요...제가 볼때...insert문에는 where조건을 사용할 수
없읍니다...where조건문을 삭제하고 작업을 하세요....^.^
초보자 wrote:
> [ paradox ]
>
> insert문 사용시 에러입니다.
> 에러 내용 : invalid use of keyword
> token : where
> line number : 1
>
> close ;
> sql.clear ;
> sql.add('insert into kooknai (BALSIN,WCODE,BOGOM) '+
> 'values(:BALSIN,:WCODE,:BOGOM) where WCODE<> :WCODE or BOGOM<> :BOGOM');
>
> ParamByName('WCODE').AsString := edit1.text ;
> ParamByName('BALSIN').AsString := edit2.text ;
> ParamByName('BOGOM').AsString := edit3.text ;
> execsql ;