[DELPHI] DEVEXPRESS UNBOUND 모드(DB 프로시저 이용) 연결 DATABASE에 저장프로시저 등록. 프로시저를 이용해 언바운드 모드로 DB값 조회. 1. 조회버튼시. procedure TForm1.Button1Click(Sender: TObject);var iFieldCnt : Integer; I: Integer; fItems : TcxCustomGridTableItem; iRecCnt : Integer; sp : TUniStoredProc; test : TUniParam; begin sp := TUniStoredProc.Create(nil); sp.Connection := UniConnection1; sp.StoredProcName := '프로시저 이름'; sp.PrepareSQL; sp.ParamByName('프로시저 입력 컬럼명').AsString := 'D0.. 개발 7년 전