Re: SelectBuilder from query string?

2020-06-08 Thread Martynas Jusevičius
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 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 from query string?

2020-05-26 Thread Martynas Jusevičius
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 tha