"Faking" an existing object
Propel chooses between an insert and an update based on the result of calling isNew() on the object you want to save (see your BaseCategory::save() function: $isInsert = $this->isNew();). So you can trick it into thinking it is an existing object by changing this property yourself: $mo->setNew(false);. isNew() and setNew() are defined in the BaseObject class.
In general, it may not be a good idea to work with partially-hydrated objects (which is what you seem to be doing here: you create an object, but then don't fill in all the properties with their actual database values). Some behaviors or your own code might depend on two properties of the object, and then give incorrect results. A simplified example: if you have an auto-generated field nameAndDescription, which you set to the concatenation of the name and the description fields on save (by extending the Propel object, via the new preInsert() and preUpdate() hooks), this will not do what you expect if you update your object like you do it here. But that's the only caveat I know, and it's probably a situation you have under control.
Updating fields without creating an object
If you only want to update some fields, and maybe even on multiple objects (for example: for all Order objects with an executionDate before today, set the status to "archived"), you can do this by calling BasePeer::doUpdate() yourself. The first argument is your select Criteria object: all Order objects with an executionDate before today. The second argument is also a Criteria object, but this is used to store the new values: status to "archived". It should look like this (untested):
// This probably also works with a Query object
$selectCriteria = new Criteria(OrderPeer::DATABASE_NAME);
$selectCriteria->add(OrderPeer::EXECUTION_DATE, time(), Criteria::LESS_THAN);
// And this too, it's just used as a simple hash table
$valueCriteria = new Criteria(OrderPeer::DATABASE_NAME);
$valueCriteria->add(OrderPeer::STATUS, "archived");
$con = Propel::getConnection(OrderPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
BasePeer::doUpdate($selectCriteria, $valueCriteria, $con);
This method will of course not execute any preUpdate() or postUpdate() hooks you defined in PHP code, as the generated objects are completely bypassed. So only use this when it is absolutely necessary (for performance reasons?), and you know there are no other "stale" objects around.