1
Extending XoopsPersistableObjectHandler questions agin..
Example Table
(id - name - age - sex)
1 - Bob - 23 - M
2 - Susan - 12 - F
3 - Greg - 56 - M
4 - Jessica - 27 - F
5 - Sue - 32 - F
6 - Jim - 87 - M
7 - Frank - 3 - M
etc..
Now lets say this table goes all the way to 1000 rows..
Im extending XoopsPersistableObjectHandler and I want to know how to tackle this query if at all possible.
$obj_handler =& xoops_getModuleHandler('class','module');
What I want to know is there any way I can pull only rows 1,6,7,14,78,100,135,144,322?
Should I do a query for each row or is there a way to just pull those without querying all 1000+ rows?