1 21 22 package org.dbunit; 23 24 import org.dbunit.dataset.*; 25 26 31 public class OracleEnvironment extends DatabaseEnvironment 32 { 33 public OracleEnvironment(DatabaseProfile profile) throws Exception  34 { 35 super(profile); 36 } 37 38 public IDataSet getInitDataSet() throws Exception  39 { 40 ITable[] extraTables = { 41 new DefaultTable("CLOB_TABLE"), 42 new DefaultTable("BLOB_TABLE"), 43 }; 44 45 return new CompositeDataSet(super.getInitDataSet(), 46 new DefaultDataSet(extraTables)); 47 } 48 } 49 50 | Popular Tags |