delphi30으로 oracle db와 connect 하여
insert 를 하는데 다음과 같은 error message가 뜹니다.
Project Project1.exe raised exception class EDBEngineError with
message 'Operation not applicable.'
query component로 dbgrid에 data를 뿌려주고 난뒤
edit에 필요한 data를 입력받고 나서
'저장'버튼을 누르면 다음이 수행되는데
query1.sql.add(' insert .....');
query1.ExecSql; --->>이 부분에서 에러발생
도움을 부탁드립니다.
showmessage(query1.sql.lines.text); <---을 하여서 완전한 sql을 한번 체크해보세요.
query1.execsql;
chbang 께서 말씀하시기를...
> delphi30으로 oracle db와 connect 하여
> insert 를 하는데 다음과 같은 error message가 뜹니다.
>
> Project Project1.exe raised exception class EDBEngineError with
> message 'Operation not applicable.'
>
>
> query component로 dbgrid에 data를 뿌려주고 난뒤
> edit에 필요한 data를 입력받고 나서
> '저장'버튼을 누르면 다음이 수행되는데
>
> query1.sql.add(' insert .....');
> query1.ExecSql; --->>이 부분에서 에러발생
>
> 도움을 부탁드립니다.
>
>