Beispiel #1
0
 public function Delete($table, $where)
 {
     try {
         $sqlString = parent::DeleteString($table, $where);
         $statement = $this->isConnect->prepare($sqlString);
         $statement->execute();
     } catch (PDOException $e) {
         parent::ErrorException('Delete', $e, $sqlString);
     }
 }