Dear all,
I have a small question in query execution factory method . Sorry If its a
repeated question.
static public QueryExecution create(Query query, Dataset dataset, QuerySolution
initialBinding)
Should the initial binding, bind all the variables present in the current query
which is passed?
Example:
I have an initial query
select ?films where { ?film rdf:type movie:film . Filter(?release_date >=
"2010-12-31"^^xsd:date ) } ---> initialBinding
who's solutions I want to pass to query
select ?actor where { ?film rdf:type movie:film . ?film movie:hasActor ?actor .
} -->query
and the dataset.
Will my query results gets effected on intial bindings of film ?
If not how can I fulfill such requirement of mine.. any guidence will be really
helpful
Regards,
aj