Changes between Version 11 and Version 12 of FDORfc33


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

--

Legend:

Unmodified
Added
Removed
Modified
  • FDORfc33

    v11 v12  
    6262...
    6363...
     64
    6465    /// \brief
    6566    /// Determines if the provider supports the ExecuteFeatureReader
     
    7374
    7475
     76
     77{{{
     78/// \brief
     79/// The FdoISQLCommand interface defines the SQL command, which
     80/// supports the execution of a SQL statement against an underlying
     81/// RDBMS. Three execute methods are provided to distinguish between
     82/// statements that return data versus those that execute
     83/// non query type operations.
     84class FdoISQLCommand : public FdoICommand
     85{
     86public:
     87...
     88...
     89...
     90
     91    /// \brief
     92    /// Executes the SQL statement against the connection object and returns
     93    /// a Feature Reader exposing the physical data returned by the reader
     94    /// as FDO features. The Feature Reader will return a computed class that
     95    /// maps the physical schema elements, referenced by the execute, to a logical
     96    /// FDO schema.
     97    ///
     98    /// \return
     99    /// Returns an FDO feature reader referncing a computed class that
     100    /// maps the physical schema elements, referenced by the execute, to a logical
     101    /// FDO schema.
     102    ///
     103    FDO_API virtual FdoIFeatureReader* ExecuteFeatureReader();
     104};
     105}}}
     106
     107
     108
    75109== Test Plan ==
    76110