Re: ARQ doesn't support BINDINGS?

2012-07-02 Thread Stephen Allen
BINDINGS has been replaced with VALUES in the latest version of Jena. You should be able to simply change "BINDINGS" to "VALUES", and your query would then work. See the SPARQL 1.1 Editor's Draft [1]. -Stephen [1] http://www.w3.org/2009/sparql/docs/query-1.1/rq25.xml#inline-data On Mon, Jul 2,

Re: ARQ doesn't support BINDINGS?

2012-07-02 Thread Joshua TAYLOR
On Mon, Jul 2, 2012 at 3:32 PM, Joshua TAYLOR wrote: > I found some examples of queries using VALUES in some diffs shown in > the jena commits mailing list [1]. It seems like the updated query > should be > > PREFIX dc: > PREFIX :

Re: ARQ doesn't support BINDINGS?

2012-07-02 Thread Joshua TAYLOR
On Mon, Jul 2, 2012 at 3:22 PM, Joshua TAYLOR wrote: > Thanks for the quick reply. I just grabbed the latest versions (and > posted my results with them before I saw this message). Is the syntax > of VALUES documented somewhere? The Working Draft I cited still uses > "BINDINGS", and I'm not sur

Re: ARQ doesn't support BINDINGS?

2012-07-02 Thread Rob Vesse
You can view the latest editors draft at http://www.w3.org/2009/sparql/docs/query-1.1/rq25.xml The syntax is broadly the same with the addition of a shorthand syntax for when you are only defining values for one variable. Plus the ability to use it inside other graph patterns. Rob On 7/2/12 12

Re: ARQ doesn't support BINDINGS?

2012-07-02 Thread Andy Seaborne
On 02/07/12 20:22, Joshua TAYLOR wrote: On Mon, Jul 2, 2012 at 3:16 PM, Rob Vesse wrote: Hi Joshua BINDINGS is being changed to be VALUES instead by the SPARQL working group which works similarly except that it can be applied more broadly i.e. Used throughout queries rather than only at the en

Re: ARQ doesn't support BINDINGS?

2012-07-02 Thread Joshua TAYLOR
On Mon, Jul 2, 2012 at 3:16 PM, Rob Vesse wrote: > Hi Joshua > > BINDINGS is being changed to be VALUES instead by the SPARQL working group > which works similarly except that it can be applied more broadly i.e. Used > throughout queries rather than only at the end > > > The version of ARQ you are

Re: ARQ doesn't support BINDINGS?

2012-07-02 Thread Joshua TAYLOR
On Mon, Jul 2, 2012 at 3:11 PM, Joshua TAYLOR wrote: > Is this the expected behavior? BINDINGS doesn't seem to be rejected, > but silently ignored. I know that initial bindings can be set > programmatically through the API, so I figured that BINDINGS would > work too, but it doesn't seem to. It

Re: ARQ doesn't support BINDINGS?

2012-07-02 Thread Rob Vesse
Hi Joshua BINDINGS is being changed to be VALUES instead by the SPARQL working group which works similarly except that it can be applied more broadly i.e. Used throughout queries rather than only at the end The version of ARQ you are using (2.8.7) is very old and pre-Apache which makes it at lea