Cursor ck = db.rawQuery("select name,title,text,type from abstracts_item,abstract_author,authors_abstract where abstract_author._id == authors_abstract.abstractauthor_id and abstracts_item._id == authors_abstract.abstractsitem_id", null);
I was run this same query with other sqlite tool. It works just fine. But, when I try to use with cursor
. I got an error
java.lang.IllegalArgumentException: column '_id' does not exist
I got so many solutions. But, nothing worked for me. I will be happy, if you guys help me to solve that.