I am working on a sql parser/interpreter for Objects. More here: Parsing SQL like syntax, design pattern
I just wanted to know if there are any off the shelf libraries for pretty printing the output results. The results would be simple types, collections etc ..
Something like this would be very nice
mysql> SELECT poet,SUM(copies_in_stock) FROM writer GROUP BY poet;
+----------------------+----------------------+
| poet | SUM(copies_in_stock) |
+----------------------+----------------------+
| Douglas Livingstone | 23 |
| Mongane Wally Serote | 13 |
+----------------------+----------------------+
Any pointers would be helpful