* @throws java.lang.Exception
*/
public SQLCommandResponses synchronizeSchemas(final String unitName,
final BeePersistenceProperties sourceProps,
final BeePersistenceProperties targetProps) throws Exception {
final AbstractSQLExecutor exec = _execfactory.create(sourceProps);
if (null != exec) {
exec.setDatabaseProperties(targetProps);
this.synchronizeSchemas(unitName, exec);
}
return null;
}