Changes between Version 29 and Version 30 of FDORfc33


Ignore:
Timestamp:
Apr 16, 2009, 9:30:37 AM (15 years ago)
Author:
gregboone
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FDORfc33

    v29 v30  
    8484
    8585
     86==== SQLCommandType Enumeration ====
     87
     88A new enumeration, FdoSQLCommandType, will be added to the FDO API for use in the SQL Command. FdoSQLCommandType represents the type of SQL statement being sent tot the provider for execution. The acceptable values of the enumeration are either Text or Stored Procedure. Stored Procedure are often executed as PL/SQL blocks.
     89
     90{{{
     91/// \brief
     92/// The FdoSQLCommandType enumeration defines the type of SQL
     93/// statement that will be executed. Statements can either be
     94/// simple Text or a represent a StoredProcedure.
     95/// The default value is typically Text.
     96enum FdoSQLCommandType
     97{
     98    FdoSQLCommandType_Text,
     99    FdoSQLCommandType_StoredProcedure
     100};
     101}}}
     102
    86103==== SQL Command Interface ====
    87104
     
    101118...
    102119...
     120
     121    /// \brief
     122    /// Gets the SQL statement type that is to be executed.
     123    ///
     124    /// \return
     125    /// Returns the SQL statement type.
     126    ///
     127    FDO_API virtual FdoSQLCommandType GetCommandType() = 0;
     128
     129    /// \brief
     130    /// Sets the SQL statement type that is to be executed.
     131    ///
     132    /// \param value
     133    /// Input the SQL statement type.
     134    ///
     135    /// \return
     136    /// Returns nothing
     137    ///
     138    FDO_API virtual void SetCommandType(FdoSQLCommandType value) = 0;
    103139
    104140    /// \brief