You can use the cursor to see the content of your sqliteDb : public Cursor selectRecords() { String[] cols = new String[] {USER_ID, USER_NAME}; Cursor mCursor = database.query(true, USER_TABLE,cols,null , null, null, null, null, null); if (mCursor != null) { mCursor.moveToFirst(); } return mCursor; // iterate to get each value....