DbSQLite3::Insert PHP Method

Insert() public method

public Insert ( $query ) : mixed
$query
return mixed
    public function Insert($query)
    {
        //$query=str_replace('%pre%', $this->dbpre, $query);
        $this->db->query($this->sql->Filter($query));
        return $this->db->lastInsertRowID();
    }