report_designer.TDA.inc.php 821 B

12345678910111213141516171819202122232425
  1. <?php
  2. #$this; // object reference
  3. #$this->dbh; // initialized MySQL database handle
  4. #$this->key; // primary key name
  5. #$this->key_type; // primary key type
  6. #$this->key_delim; // primary key deliminator
  7. #$this->rec; // primary key value (update and delete only)
  8. #$newvals; // associative array of new values (update and insert only)
  9. #$oldvals; // associative array of old values (update and delete only)
  10. #$changed; // array of keys with changed values
  11. require_once 'auth.php';
  12. global $adodb;
  13. $sql = "DELETE FROM qb_dictionary ".
  14. " WHERE module = 'qb_report_".$oldvals['id']."' ";
  15. $rs = $adodb->Execute($sql);
  16. if (!$rs) echo $adodb->ErrorMsg();
  17. $sql = "DELETE FROM qb_user_report ".
  18. " WHERE name = '".$oldvals['name']."' ";
  19. $rs = $adodb->Execute($sql);
  20. if (!$rs) echo $adodb->ErrorMsg();
  21. ?>