// if not updating an existing column, create a new one
if (existingTableId == DataConfig.NULL || info.existingColumnId == DataConfig.NULL)
dataConfig.newEntity(newMeta, table_id, DataConfig.NULL);
else
dataConfig.updateEntity(info.existingColumnId, newMeta);
}
}
catch (SQLException e)
{
throw new RemoteException(failMessage, e);