function getObjectNoCache($objectId, $data = '')
 {
     // load it from db
     $tc = substr($objectId, 3, 2);
     $class = $this->codeToClass[$tc];
     if ($class) {
         $obj = new $class($objectId, $data);
     } else {
         $table = array_search($tc, $this->tableCodes);
         $obj = new sotf_NodeObject($table, $objectId, $data);
     }
     if (count($obj->getAll()) == 0) {
         return NULL;
     }
     return $obj;
 }