Apache DbUtils handler for single row query result

121 views Asked by At

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);
0

There are 0 answers