manticore-projects

Results 434 comments of manticore-projects
trafficstars

Closed, since no further question has been asked.

Greetings. You will need to provide much more information please: 1) What RDBMS 2) What Version of JSQLParser 3) What should the `BERNOULLI(10)` represent, it seems to be far from...

First of all a proper documentation of the challenge in H2: ```sql VALUES ('c c\', 'dd', 'ee\'); ``` returns C1 | C2 | C3 -- | -- | -- c c\...

The problem is simple: JSQLParser treats both characters `'` and `\` as escape character (which should be a good thing): ```sql -- correctly parsed with JSQLParser select 'c c\\', 'dd',...

@wumpz: I read through a lot of stuff in order to find a solution. My current suggestion was to 1) define only one Quoting Character inside the Grammar (an maybe...

Yes, this was exactly what I have suggested to the @wumpz. As kind of Pre-Processing and Post-Processing outside of the Parser itself. On Mon, 2021-05-24 at 21:06 -0700, Xingcan Cui...

What I was refering to was to Modify the SQL String in Java before handing it over to the Parser itself. Something like simple Prep- Parser.  I do this for...

Ok, clear. So I won't waste my time. Although I do not see a good solution then because onces your token is defined you are stuck with it. JavaCC21 seems...

> @wumpz, > > I didn't get if there's an issue here or not. There is the issue, that `\` is understood as escape character in JSQLParser (always), but not...

The idea was to: 1) Define one `Quote Character` (default maybe `'`) 2) to allow setting this `Quote Character` when calling the parser (as configuration) (so either `\` or `'`...