I have to implement a query in objectdb and have very little idea.
The problem is to write a query which
Returns the collection of all laptops each of which has at least one
other laptop preinstalled with the same processor.
My Laptop class is
public class Laptop {
String modelName; // key
int price; // in dollars
boolean hasHDScreen; // has a HD Screen ?
int hardDriveCapacity; // in GB
Processor processor; // the preinstalled processor
Memory memory; // the preinstalled memory
Company madeBy; // the inverse of company.makeLaptops
}
and my processor class is
public class Processor {
String modelName; // key
float clockSpeed; // in gigahertz (GHz)
Company madeBy; // the inverse of Company.makeProcessors
}
Also my function definition looks like below
public static Collection<Laptop> sameProcessor(Query q) {
/* Returns the collection of all laptops each of which has at least one
* other laptop preinstalled with the same processor.
*/
q.setClass(Laptop.class);
q.setFilter("this.processor == ");
}
How can I achieve it ? SQL would be fine as well.
Thanks
Finally got over this one. Here's the solution
The method used
installedOn
definition is below:Thanks. Hope it helps.