* Test method.
* @throws Exception For any exception thrown.
*/
public void testQuerySortedCollection() throws Exception {
Database db = _category.getDatabase();
db.begin();
OQLQuery query = db.getOQLQuery("SELECT c FROM "
+ SortedContainer.class.getName() + " c WHERE id = $1");
query.bind(new Integer(1));
QueryResults results = query.execute();