* @param dataSourceSet The set of data sources to consider.
* @throws Exception If an dump file import exception occurs.
*/
public void generateScript(final Writer out, InputStream in, Set dataSourceSet) throws Exception
{
SQLConnectionFactory outCF = new SQLConnectionFactory()
{
public Connection getConnection(SQLAdapter adapter) throws SQLException
{
return new SQLWriterConnection(adapter, out, false);
}