1RQSH(1)               User Contributed Perl Documentation              RQSH(1)
2
3
4

NAME

6       rqsh - SPARQL database shell
7

DESCRIPTION

9       rqsh provides a command-line interface to the SPARQL 1.1 implementation
10       of RDF::Query. It defaults to using an in-memory database, but can be
11       configured to use any database implemented as an RDF::Trine::Store.
12

COMMANDS

14       help
15           Show help information on available commands.
16
17       use [backend]
18           Switch the storage backend (e.g. "use mysql").  You will be
19           prompted to enter any necessary connection/configuration data.
20
21       init
22           Initialize the storage backend (creating necessary indexes, etc.).
23
24       set prefix [ns]: [uri]
25           Set a namespace for use in subsequent queries.
26
27       results (table|srx)
28           Set the serializer used for tabular variable binding results.
29
30       serializer [format]
31           Set the serializer used for RDF results (e.g. "serializer turtle").
32
33       debug
34           Print all the quads in the storage backend.
35
36       parse [sparql]
37           Print the parsed algebra for the SPARQL 1.1 query/update.
38
39       explain [sparql]
40           Print the execution plan for the SPARQL 1.1 query/update.
41
42       time [command]
43           Time the execution of the command.
44
45       execute <URI>
46           Execute the SPARQL update/query obtained by dereferencing URI.
47
48       SELECT ...
49       ASK ...
50       CONSTRUCT ...
51       DESCRIBE ...
52           Execute the SPARQL 1.1 query.
53
54       INSERT ...
55       DELETE ...
56       LOAD <uri>
57       CLEAR ...
58       COPY ...
59       MOVE ...
60           Execute the SPARQL 1.1 update.
61
62
63
64perl v5.34.0                      2022-01-21                           RQSH(1)
Impressum