| 51 | === FDO API === |
| 52 | |
| 53 | |
| 54 | {{{ |
| 55 | /// \brief |
| 56 | /// The FdoICommandCapabilities interface declares the feature |
| 57 | /// provider's level of support for Commands. |
| 58 | class FdoICommandCapabilities : public FdoIDisposable |
| 59 | { |
| 60 | public: |
| 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 | |