Advertisement
psi_mmobile

Untitled

Sep 26th, 2019
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. /* Alternative method for POI row retrieval BEGIN
  2. RowQualifier findPoiByIdRq = new RowQualifier(voImpl);
  3. findPoiByIdRq.setWhereClause("PoiId="+poiId);
  4. Row filteredPois[] = voImpl.getFilteredRows(findPoiByIdRq);
  5. if(filteredPois.length > 0) {
  6. poiRow = filteredPois[0];
  7. } else {
  8. return;
  9. }
  10. Alternative method of POI row retrieval END*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement