본문 바로가기

Delphi/꿀팁

[CUBRID] Table doesn't exist 해결방법

FDQuery에서 Select문을 실행할 때

해당 오류가 뜬다면,

..

if Pos('SELECT', UpperCase(FDQuery1.SQL.Text)) > 0 then begin
  FDQuery1.UpdateOptions.RequestLive := False;
  FDQuery1.Open;
end else begin
  FDQuery1.UpdateOptions.RequestLive := True;
  FDQuery1.ExecSQL;
end;

또는

FDQuery 프로퍼티에서 UpdateOptions - RequestLive를 False로 바꿉니다.

2019.12.26 - [Delphi/꿀팁] - [CUBRID] FireDac을 사용하여 DB연결하기

2019.12.24 - [Delphi/꿀팁] - [CUBRID] ADO를 사용하여 DB연결하기

반응형