lithium\data\source\database\adapter\Sqlite3::_insertId PHP 메소드

_insertId() 보호된 메소드

Gets the last auto-generated ID from the query that inserted a new record.
protected _insertId ( object $query ) : mixed
$query object The `Query` object associated with the query which generated
리턴 mixed Returns the last inserted ID key for an auto-increment column or a column bound to a sequence.
    protected function _insertId($query)
    {
        return $this->connection->lastInsertId();
    }