Example #1
0
 function Exclui()
 {
     //Exclui a reuniao
     if ($this->Existe == 'N') {
         return;
     }
     $db = new BDSMS();
     $sql = sprintf("delete from tb_mensagem where id = %d", $this->getID());
     $db->Exec($sql);
     $db->Close();
 }
Example #2
0
 function Altera()
 {
     //Altera a reuniĆ£o
     $db = new BDSMS();
     $db->Close();
 }