Changes between Version 10 and Version 11 of FDORfc33


Ignore:
Timestamp:
Apr 9, 2009, 1:41:11 PM (15 years ago)
Author:
gregboone
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FDORfc33

    v10 v11  
    4949== Requirements ==
    5050
     51=== FDO API ===
     52
     53
     54{{{
     55/// \brief
     56/// The FdoICommandCapabilities interface declares the feature
     57/// provider's level of support for Commands.
     58class FdoICommandCapabilities : public FdoIDisposable
     59{
     60public:
     61...
     62...
     63...
     64    /// \brief
     65    /// Determines if the provider supports the ExecuteFeatureReader
     66    /// function on the SQL Command.
     67    ///
     68    /// \return
     69    /// Returns true if the provider supports ExecuteFeatureReader.
     70    FDO_API virtual bool SupportsFeatureReaderFromSQLCommand();
     71};
     72}}}
     73
    5174
    5275== Test Plan ==