Jan 12, 2012 4:14 PM
SELECT IN query using ormExecuteQuery()
-
Like (0)
I'm trying to do a SELECT IN query using ormExecuteQuery(). Following is the code I have:
Categories = ormExecuteQuery("from Category where Id IN (?)",[CategoryList]);
It only works when there is 1 value in the CategoryList. i.e. This works:
Categories = ormExecuteQuery("from Category where Id IN (?)",[9]);
This DOES NOT work:
Categories = ormExecuteQuery("from Category where Id IN (?)",[8,9,10]);
Help would be greatly appreciated.
This works:
Categories = ormExecuteQuery("from Category where Id IN (:IdList)",{IdList=ListToArray(CategoryList)});
Seems like this would too, but it does not.
Categories = ormExecuteQuery("from Category where Id IN (?)",[ListToArray(CategoryList)]);
North America
Europe, Middle East and Africa
Asia Pacific
Copyright © 2011 Adobe Systems Incorporated. All rights reserved.
Use of this website signifies your agreement to the Terms of Use and Online Privacy Policy (updated 07-14-2009).