I have a SQLite query:
private String showAllType = "select * from tbl_Type";
And I call it as shown below:
Cursor mCursor = mSQLiteDB.rawQuery(showAllType, null);
But when I check codestyle, it gives a warning: 'mCursor' hides a field'
How can I fix this ?