Changes between Version 12 and Version 13 of FDORfc17
- Timestamp:
- 03/25/08 07:40:46 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FDORfc17
v12 v13 103 103 /// Returns a literal value. This value is valid until the next Evaluate call 104 104 /// 105 FdoLiteralValue* Evaluate(OSGEO_FDO_EXPRESSION::Expression *expression);105 OSGEO_FDO_EXPRESSION::LiteralValue* Evaluate(OSGEO_FDO_EXPRESSION::Expression *expression); 106 106 107 107 /// \brief … … 114 114 /// Returns a literal value. This value is valid until the next Evaluate call 115 115 /// 116 FdoLiteralValue* Evaluate(System::String* name);116 OSGEO_FDO_EXPRESSION::LiteralValue* Evaluate(System::String* name); 117 117 118 118 /// \brief … … 125 125 /// Returns a literal value. This value is valid until the next Evaluate call 126 126 /// 127 FdoLiteralValue* Evaluate(OSGEO_FDO_EXPRESSION::Identifier* expr);127 OSGEO_FDO_EXPRESSION::LiteralValue* Evaluate(OSGEO_FDO_EXPRESSION::Identifier* expr); 128 128 129 129 … … 134 134 /// Returns the aggragate results 135 135 /// 136 FdoPropertyValueCollection* RunQuery();136 OSGEO_FDO_COMMANDS::PropertyValueCollection* RunQuery(); 137 137 138 138 /// \brief … … 145 145 /// Returns true id passes the filter, otherwise false 146 146 /// 147 boolProcessFilter(OSGEO_FDO_FILTER::Filter *filter);147 System::Boolean ProcessFilter(OSGEO_FDO_FILTER::Filter *filter); 148 148 149 149 /// \brief … … 209 209 /// True if the function is an aggregate function otherwise false 210 210 /// 211 static bool IsAggregateFunction(OSGEO_FDO_CONNECTIONS_CAPABILITIES::FunctionDefinitionCollection *funcDefs, 212 System::String *name); 211 static System::Boolean IsAggregateFunction(OSGEO_FDO_CONNECTIONS_CAPABILITIES::FunctionDefinitionCollection *funcDefs, System::String *name); 213 212 214 213 /// \brief