I am new to boost spirit and playing around with the microSQL-Parser.
It's not possible to parse quoted strings like: 'It's driving me crazy'
in the example with the following grammar definition:
string_literal = lexeme_d[ch_p( '\'' ) >> +(anychar_p - ch_p( '\'' ))
>> ch_p( '\'' )] ;
I have tried a lot but can't find the right way to do it. Does anybody know how to do it right?