/**
  * Get the autogenerated ID from the previous INSERT query.
  *
  * @param string $table The name of the table to get the generated ID for
  * @return integer the most recently generated ID for the specified table
  */
 public function getGeneratedID($table)
 {
     return $this->connector->getGeneratedID($table);
 }