리스트뷰에 데이터베이스에 있는내용 을 한행씩보여주고 싶은데 현재 리스트뷰한줄에

모든 데이터 베이스의 내용이 표시됩니다. 커서를 지정해 보기도햇는대 쉽지 안내요 '

도와주세요 ㅠ

btn.setOnClickListener(new View.OnClickListener() {

   public void onClick(View v) {
    sqlDB = myHelper.getReadableDatabase();
    Cursor cursor;
    cursor = sqlDB.rawQuery("SELECT * FROM khmTable;", null);

    int position = 0;
    cursor.moveToPosition(position);
    
    String str = cursor.getString(cursor.getColumnCount());
    
    mldList.add(str);
    adapter.notifyDataSetChanged();

    cursor.close();
    sqlDB.close();
   }
  });
 }

이런식으로 지정해보았습니다. 수정좀 도와주세요 ㅠ