/**
* Save the db info in the source information part of worksheet's
* metadata *
*/
SourceInformation srcInfo = new SourceInformation();
srcInfo.setAttributeValue(InfoAttribute.dbType, dbType.name());
srcInfo.setAttributeValue(InfoAttribute.hostname, hostname);
srcInfo.setAttributeValue(InfoAttribute.portnumber, String.valueOf(portnumber));
srcInfo.setAttributeValue(InfoAttribute.username, username);
srcInfo.setAttributeValue(InfoAttribute.dBorSIDName, dBorSIDName);
srcInfo.setAttributeValue(InfoAttribute.tableName, tableName);
getWorksheet().getMetadataContainer().setSourceInformation(srcInfo);
getWorksheet().getMetadataContainer().getWorksheetProperties().setPropertyValue(Property.sourceType, SourceTypes.DB.toString());
return getWorksheet();
}