how can I count objects in Eclipse MAT using OQL syntax? This doesn't work :
SELECT count(a) FROM org.hibernate.engine.EntityEntry a
WHERE (toString(a.entityName)="my.pojo")
(I want to count the number of hibernate pojos loaded into memory)
There must be a very quick way to do so...Thanks for helping me out !