I am using OrientDB 2.2.17.
I have 2 question regarding the query string sent to:
String query = "SELECT FROM XXX WHERE num IN[1,2,3,4]";
graph.command(new OCommandSQL(query));
- What is the max length allowed in the string: 'query'?
- If inside the 'query' string I use the operator "IN" - is there a limit for the number of the items inside the 'IN' list?
thanks