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位的記錄,或其他一些條件表。
由於提前, 達里奧