Q&A

  • storedproc1를 사용하는데 에러가 나요.. 좀 갈쳐주세요
storedproc1를 사용하는데.. 입력 파마미터에다 값을 넣어 주고
실행을 시키면(execproc)면 에러가 나요... 이유가 뭔지 잘 모르겠어요..
'가가가'는 찍히는 데 '나나나'는 안찍히구 에러가 나요. 연결은 제대로 된것 같은데...
---------------------------
Debugger Exception Notification
---------------------------
Project test.exe raised exception class EDBEngineError with message 'Capability not supported.'. Process stopped. Use Step or Run to continue.
---------------------------
OK   Help  
---------------------------
이런 메시지가 나요...흑흑.. 원인좀 갈쳐주세요..


begin
//{//*
  with StoredProc1 do
  begin
      Prepared := True;
      ParamByName('VLOADING_DATE').AsString := '0';
      ParamByName('VVEH_CARD_NO').AsString := '00';
      ParamByName('VTRIP').AsString := '2';
      ParamByName('VWORK_ID').AsString := '10000';
      showmessage('가가가');
      ExecProc;

      showmessage ('나나나');

  end;

0  COMMENTS