android.database.sqlite.SQLiteException: no such column

Solution 1:

For string data type always use quotes like this '"+rid+"'" since rid is String you get error.

You should use +rid only if rid is int.

Solution 2:

you need to use apostrophe(') in Where clause checking.. like

db.rawQuery("SELECT _id FROM  Meeting   where meet='"+rid+"'" , null);