| 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. |
| 84 | class FdoISQLCommand : public FdoICommand |
| 85 | { |
| 86 | public: |
| 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 | |