Changes between Version 6 and Version 7 of FDORfc28


Ignore:
Timestamp:
Oct 21, 2008, 11:21:04 AM (16 years ago)
Author:
gregboone
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FDORfc28

    v6 v7  
    4646=== Example ===
    4747
    48 TBD
     48
     49{{{
     50FdoPtr<FdoISelectAggregates> selectAggregates = (FdoISelectAggregates*)mConnection->CreateCommand (FdoCommandType_SelectAggregates);
     51selectAggregates->SetFeatureClassName (L"POLE");
     52FdoPtr<FdoIdentifierCollection> idColl = selectAggregates->GetPropertyNames();
     53
     54FdoPtr<FdoExpressionCollection> functionArgs = FdoExpressionCollection::Create();
     55FdoPtr<FdoIdentifier> arg1 = FdoIdentifier::Create(L"GEOMETRY");
     56functionArgs->Add(arg1);
     57FdoPtr<FdoFunction> computedExpr = FdoFunction::Create(L"MINX", functionArgs);
     58FdoPtr<FdoComputedIdentifier> computedId = FdoComputedIdentifier::Create(L"POLE_MINX", computedExpr);
     59idColl->Add(computedId);
     60
     61FdoPtr<FdoIDataReader> reader = selectAggregates->Execute ();
     62}}}
     63
    4964
    5065== Affected Providers ==