0

dbunit 的官方教程已经给出了从单个数据库模式中导出数据集的 一个很好的示例。
有没有办法将不同模式中的不同表导出到一个数据集中(比如来自 schema_A 的 Table_A,来自 schema_B 的 Table_B)?
导出的数据集在写入 xml 文件时将如下所示:

<?xml version='1.0' encoding='UTF-8'?>
<dataset schema:schemaA schema:schemaB>
    <schemaA:tableA ..... />
    <schemaA:tableA ..... />
    <schemaB:tableB ..... />
</dataset>
4

1 回答 1

2

我刚刚遇到了同样的问题,要解决它,您需要设置 FEATURE_QUALIFIED_TABLE_NAMES 属性:

请参阅下面的相同示例代码进行更改(我删除了部分代码,因为我不需要完整的数据库导出):

    public static void main(String[] args) throws Exception
    {
        // database connection
        Class driverClass = Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
        Connection jdbcConnection = DriverManager.getConnection(
                "jdbc:sqlserver://<server>:1433;DatabaseName=<dbName>", "<usr>", "<passwd>");
        IDatabaseConnection connection = new DatabaseConnection(jdbcConnection);

        Properties props = new Properties();
        props.put(DatabaseConfig.FEATURE_QUALIFIED_TABLE_NAMES, "true");
        connection.getConfig().setPropertiesByString(props);        


        // dependent tables database export: export table X and all tables that
        // have a PK which is a FK on X, in the right order for insertion
        String[] depTableNames = TablesDependencyHelper.getAllDependentTables( connection, "vehicle.Vehicle_Series_Model_SMA" );
        IDataSet depDataset = connection.createDataSet( depTableNames );
        FlatXmlDataSet.write(depDataset, new FileOutputStream("vehicle.Vehicle_Series_Model_SMA.xml"));          

    }
于 2015-12-08T20:28:43.170 回答