/**
  * @param string $table name
  * @return int id of last insert statement
  */
 public function lastInsertId($table)
 {
     return $this->conn->realLastInsertId($table);
 }