2011-04-28 6 views

답변

0

당신은 자바 SDK를 통해 WebI DocumentInstance 객체를 얻는 방법을 알고있다.

DocumentInstance docInst; // get your DocumentInstance object via preferred route 
DataProvider dp = docInst.getDataProviders().getItem(0); // retrieve the DataProvider that you would like the SQL for 
String sql = dp.getQuery().getSQL(); // the SQL out of the DataProvider 

getSQL는()는 다음 버전에서 사라질 수 있도록 감가 상각

관련 문제