android.database.sqlite.SQLiteException: no such column

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.

Leave a Comment