cursor = dbHelper.fetchAll();
startManagingCursor(cursor);
String[] from = new String[] { OurAppDbAdapter.KEY_TTNNUM, OurAppDbAdapter.KEY_SUM };
int[] to = new int[] { R.id.TextView01, R.id.TextView02 }; // id TextView в R.layout.ttn_row
SimpleCursorAdapter notes = new SimpleCursorAdapter(this,R.layout.ttn_row, cursor, from, to);
setListAdapter(notes);