2010-04-26 53 views

回答

1

我相信你已經走進了這個結構。要獲得生成的SQL,您應該通過rebean的DataProvider。我沒有試圖看看我得到了什麼值,但是看看API方法,DataProvider的getQuery()。getSQL()方法看起來就是你正在尋找的。

爲了更清楚:

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

getSQL()被大幅貶值,也可能在下一版本中消失