2015-07-13 55 views
0

我正在使用DBUNIT將我的數據集導出爲XML。我不知道是否有任何「簡單」的方式來獲得所有的依賴表和數據由給定的表名和一些標準?DBUNIT依賴表

private void exportDBDepended() throws Exception { 

    String[] depTableNames = TablesDependencyHelper.getAllDependentTables(connection, "dbo.Users"); 
    IDataSet depDataset = connection.createDataSet(depTableNames); 
    FlatXmlDataSet.write(depDataset, new FileOutputStream("dependents.xml")); 

} 

這給了我所有的記錄和dependet數據,但我想只獲取排名前100位的記錄,或其他一些條件表。

由於提前, 達里奧

回答

0

我沒能解決編程我的要求,但http://jailer.sourceforge.net/會比eneugh更準備XML DB的數據。 感謝您的閱讀。

此致敬禮 Dario Sarcevic