Ouzo\Db\Dialect\Sqlite3Dialect::update PHP Method

update() public method

public update ( )
    public function update()
    {
        if ($this->_query->aliasTable) {
            throw new InvalidArgumentException("Alias in update query is not supported in sqlite3");
        }
        return parent::update();
    }