You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@jena.apache.org by Martynas Jusevičius <ma...@atomgraph.com> on 2020/06/08 08:39:51 UTC

Re: SelectBuilder from query string?

No solution to this? Kind of diminishes the utility of having a query
builder if it can't parse an existing query.

On Tue, May 26, 2020 at 10:40 AM Martynas Jusevičius
<ma...@atomgraph.com> wrote:
>
> Hi,
>
> I have an existing SELECT query string that I want to add VALUES to.
>
> I found that I can build VALUES with SelectBuilder like this:
>
>     sb.addWhereValueVar(Converters.makeVar("this"), instances.toArray())
>
> However, I don't see any method to initialize SelectBuilder from a
> query string. Is that possible?
>
> Thanks,
>
>
> Martynas