.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.40) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "RQSH 1p" .TH RQSH 1p "2021-01-05" "perl v5.32.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" rqsh \- SPARQL database shell .SH "DESCRIPTION" .IX Header "DESCRIPTION" rqsh provides a command-line interface to the \s-1SPARQL 1.1\s0 implementation of RDF::Query. It defaults to using an in-memory database, but can be configured to use any database implemented as an RDF::Trine::Store. .SH "COMMANDS" .IX Header "COMMANDS" .IP "help" 4 .IX Item "help" Show help information on available commands. .IP "use [backend]" 4 .IX Item "use [backend]" Switch the storage backend (e.g. \*(L"use mysql\*(R"). You will be prompted to enter any necessary connection/configuration data. .IP "init" 4 .IX Item "init" Initialize the storage backend (creating necessary indexes, etc.). .IP "set prefix [ns]: [uri]" 4 .IX Item "set prefix [ns]: [uri]" Set a namespace for use in subsequent queries. .IP "results (table|srx)" 4 .IX Item "results (table|srx)" Set the serializer used for tabular variable binding results. .IP "serializer [format]" 4 .IX Item "serializer [format]" Set the serializer used for \s-1RDF\s0 results (e.g. \*(L"serializer turtle\*(R"). .IP "debug" 4 .IX Item "debug" Print all the quads in the storage backend. .IP "parse [sparql]" 4 .IX Item "parse [sparql]" Print the parsed algebra for the \s-1SPARQL 1.1\s0 query/update. .IP "explain [sparql]" 4 .IX Item "explain [sparql]" Print the execution plan for the \s-1SPARQL 1.1\s0 query/update. .IP "time [command]" 4 .IX Item "time [command]" Time the execution of the command. .IP "execute <\s-1URI\s0>" 4 .IX Item "execute " Execute the \s-1SPARQL\s0 update/query obtained by dereferencing \s-1URI.\s0 .IP "\s-1SELECT ...\s0" 4 .IX Item "SELECT ..." .PD 0 .IP "\s-1ASK ...\s0" 4 .IX Item "ASK ..." .IP "\s-1CONSTRUCT ...\s0" 4 .IX Item "CONSTRUCT ..." .IP "\s-1DESCRIBE ...\s0" 4 .IX Item "DESCRIBE ..." .PD Execute the \s-1SPARQL 1.1\s0 query. .IP "\s-1INSERT ...\s0" 4 .IX Item "INSERT ..." .PD 0 .IP "\s-1DELETE ...\s0" 4 .IX Item "DELETE ..." .IP "\s-1LOAD\s0 " 4 .IX Item "LOAD " .IP "\s-1CLEAR ...\s0" 4 .IX Item "CLEAR ..." .IP "\s-1COPY ...\s0" 4 .IX Item "COPY ..." .IP "\s-1MOVE ...\s0" 4 .IX Item "MOVE ..." .PD Execute the \s-1SPARQL 1.1\s0 update.