0
votes
1answer
68 views
Binding a list of integers in an IN clause using Cayenne
I'm trying to bind a list of integers into an SQLTemplate IN clause like so:
SELECT * FROM table1 WHERE id IN ( #bind($idList) );
I have a string of ids:
idList = "1, 2, 3, 4"; …
0
votes
1answer
98 views
Cayenne null pointer error when trying to commit changes
I'm running the following code that errors when I try to commit my changes using Cayenne as my ORM. The code is pasted below and errors out on the context.commitChanges();line …
