Using -line Option I get this output from SQLite:
row1_column1 = valueA
row1_column2 = valueB
row2_column1 = valueC
row2_column2 = valueD
So one line for each column value and result rows are separated by a blank line. I need to get this output in a array or list containing
valueA,valueB
valueC,valueD
Additionally non-numeric (!) values shall be enclosed by ' and '. Any simple way to do this? Thanks for any hint!