Hi guys,
i am new to NOTORM,I am trying to save a binary uuid which I have retrieved from a related table (am using id and uuid as PKs).Is there any special way of saving the UUID retrieved into this table?
see below part of the code:
$this->person_uuid="".$this->GetUUID().""; [I am retrieving a uuid that had been converted to binary already,I want to save it as is]
            try{
                $ovc=Array(
                    "id"                   =>null,
                    "uuid"                 =>new NotORM_Literal("unhex(replace(uuid(),'-',''))"), 
                    "person_id"            =>$this->personId,
                    "person_uuid"          =>$this->person_uuid,