GogConfiguration gc = GogConfigurationMgr.getConfiguration();
if (gc.getOutputType().equalsIgnoreCase("mdb")) {
writeDALMDBObject(mdbo);
} else if (gc.getOutputType().equalsIgnoreCase("ascii")) {
GogAsciiWriter gaw = new GogAsciiWriter();
gaw.initializeOutputFiles();
gaw.writeAsciiMDBObject(mdbo);
} else {
throw new GogException(ErrorMessageFormat.format(GogErrorMessageKeys.Data.INVALID_TYPE,
"ascii | mdb are the accepted types "));
}