Well, I'm trying to select all objects where entitie_id = *some id*
I do this with this rule:
List<NodeSugar> nodesugars = NodeSugar.find(NodeSugar.class, "entitie_id = ? ", String.valueOf(nodeid));
I know that I need to return some results, and I get an error message. this error:
E/SQLiteLog๏น (1) no such column: entitie_id
I know that a column exists because I can set it in another part of the code.
Where am I going wrong?
source share