/**
  * Inserts a table row with specified data.
  *
  * @param mixed $table
  *            The table to insert data into.
  * @param array $bind
  *            Column-value pairs.
  * @return int The number of affected rows.
  * @throws EhrlichAndreas_Db_Exception
  */
 public function insert($table, array $bind)
 {
     return $this->adapter->insert($table, $bind);
 }