I need to select single row and store it attributes into List<String>, but I do not know what handler could fit.
More formal:
QueryRunner runner = new QueryRunner();;
List<String> row = runner.query("SELECT * FROM table_name WHERE id = ?", new Handler(), id);