/**
  * Class constructor
  *
  * @param Zend_Db_Adapter_Abstract|EhrlichAndreas_Db_Adapter_Abstract $adapter
  */
 public function __construct($adapter)
 {
     parent::__construct($adapter);
 }
 /**
  * Clear parts of the Select object, or an individual part.
  *
  * @param string $part
  *            OPTIONAL
  * @return EhrlichAndreas_Db_Insert
  */
 public function reset($part = null)
 {
     parent::reset($part);
     return $this;
 }