I was wondering if there is something I can use in C++ similar to "sqlparse" module in Python to format my query. Do you know what can I use?
I'm sorry for didn't provide an example before. I want that something like this:
SELECT MEMB.NAME, MEMB.AGE, AGE.GROUP FROM MEMB, AGE WHERE MEMB.AGE = AGE.AGE
Become this:
SELECT MEMB.NAME,
MEMB.AGE,
AGE.GROUP
FROM MEMB,
AGE
WHERE MEMB.AGE = AGE.AGE
Thanks a lot.