示例#1
0
 /**
  * Get the ID generated in the last query
  *
  * @return int
  *   The ID generated for an AUTO_INCREMENT column by the previous query on success, 0 if the previous query does not generate an AUTO_INCREMENT value, or false if no MySQL connection was established.
  */
 public function insert_id()
 {
     return $this->dbObj->insert_id();
 }