2011-05-20 55 views

回答

0

如果您想要生成的查詢及其參數映射,那麼您可以使用記錄。 iBatis的支持Log4J記錄您可以使用that.It顯示執行SQL和其他類似的伐木區

Preparing Statement: /*your query to be prepared */ 
Executing Statement: /*your prepared query with parameter mapping* (wiht ?,?,?)/ 
Parameters:   /*Parameters mapped with the same sequence as `Executing Statement`*/ 
Types:    /*java types of the mapped parameter(example java.lang.String, java.lang.String, java.lang.String)*/ 
ResultSet:   /*ResultSet of the query (if any)*/ 
Result:    /*Rows of the ResultSet */ 

一個文檔是this link的方式。
而類似的話題在here