- ClioPatria
- rdfql
- serql.pl
- rdfql_util.pl
- sparql_runtime.pl -- SPARQL runtime support
- rdfql_runtime.pl -- SPARQL/SeRQL runtime support predicates
- serql_runtime.pl
- sparql.pl
- sparql_grammar.pl -- SPARQL Parser
- jena_properties.pl
- text_properties.pl
- rdf_io.pl
- rdf_html.pl -- Write query-results as HTML table.
- sparql_xml_result.pl
- sparql_json_result.pl -- Write SPARQL results as JSON
- sparql_csv_result.pl -- Write SPARQL results as CSV
- rdf_turtle_io.pl -- Write query-result graphs as Turtle
- serql_xml_result.pl
- rdfql
- write_table(+Rows, +Options)
- Write a result-table in the specified format. Rows is a list of
terms
row(C1, C2, ...)
. Options specifies additional processing options. Defined options are:- result_format(+Format)
- Specifies the output format. Defined formats depend on the loaded plugins. Passed as first argument to the write_table/4 hook. This option must be present.
- serialization(+Serialization)
- Specifies the serialization of the output. Passed as second argument to the write_table/4 hook. This option must be present.
- variables(+Vars)
- Specifies the names of the columns. Vars is a term with
functor
vars
and atom-arguments describing the names of each subsequent column. For Example:variables(vars('Name', 'Address'))
The output hooks may support additional options.
- Arguments:
-
Rows - is a list of terms row(Col1, Col2, ..., ColN)