tableconfig.TDA.inc.php 897 B

123456789101112131415161718192021222324252627
  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. $arrsql = array();
  14. $arrsql[] = "DROP TABLE ".$oldvals['tableid']." ";
  15. $arrsql[] = "DROP TABLE ".$oldvals['tableid']."_crc ";
  16. $arrsql[] = "DROP TABLE ".$oldvals['tableid']."_history ";
  17. $arrsql[] = "DELETE FROM qb_log ".
  18. " WHERE tableid = '".$oldvals['tableid']."' ";
  19. foreach ($arrsql as $key => $sql) {
  20. $rs = $adodb->Execute($sql);
  21. if (!$rs) echo $adodb->ErrorMsg();
  22. }
  23. ?>