When I do this in Android:
sqlite> SELECT * FROM secure WHERE name='mock_location' OR value=2.2 ORDER BY value ASC;
I get this:
44|mock_location|1
56|facelock_liveliness_recognition_threshold|2.2
But I want the column names for (*) in the first row, like this:
_id|name|value
44|mock_location|1
56|facelock_liveliness_recognition_threshold|2.2
How can I do that in a single query?