Changes between Version 11 and Version 12 of FDORfc50
- Timestamp:
- 06/02/10 11:41:44 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FDORfc50
v11 v12 161 161 class FdoJoinCriteriaCollection : public FdoCollection<FdoJoinCriteria, FdoCommandException> 162 162 { 163 public:163 public: 164 164 /// Default constructor 165 165 FDO_API static FdoJoinCriteriaCollection* Create(); … … 247 247 248 248 In above case we will have two selects having following filters: 249 Main select: ''!FeatId IN(:SUBSEL)''250 Sub- select: ''pt.!FeatId >= 2 AND SPATIAL_COND(pt.GEOM, GEOM_VAL)''249 Main-Select: ''!FeatId IN(:SUBSEL)''[[BR]] 250 Sub-Select: ''pt.!FeatId >= 2 AND SPATIAL_COND(pt.GEOM, GEOM_VAL)'' 251 251 252 252 Below we added some C++ code on how caller can use this new improvement to achieve above select statement: