Lines Matching refs:query
117 <a href="http://www.w3.org/TR/rdf-sparql-query/">SPARQL</a>
118 query language is provided.
371 /** executes a SPARQL "SELECT" query.
374 This method runs a SPARQL query that returns a list of variable
375 bindings, i.e., a query beginning with "SELECT".
381 the SPARQL query <atom>string</atom>
386 <li>a list of query variable names (column labels)</li>
387 <li>the query results (rows),
392 if the query is malformed, or evaluation fails
404 /** executes a SPARQL "CONSTRUCT" query.
407 This method runs a SPARQL query that constructs a result graph,
408 i.e., a query beginning with "CONSTRUCT".
412 the SPARQL query <atom>string</atom>
415 an iterator over the query result graph, represented as an
419 if the query is malformed, or evaluation fails
432 /** executes a SPARQL "ASK" query.
435 This method runs a SPARQL query that computes a boolean,
436 i.e., a query beginning with "ASK".
440 the SPARQL query <atom>string</atom>
443 the boolean query result
446 if the query is malformed, or evaluation fails