Changes between Version 5 and Version 6 of MapGuideRfc80


Ignore:
Timestamp:
Aug 6, 2009, 5:46:39 PM (15 years ago)
Author:
leaf
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MapGuideRfc80

    v5 v6  
    217217
    218218    /// \brief
     219    /// Set the parameter value to null.
     220    ///
     221    /// \return
     222    /// Returns nothing.
     223    ///
     224    void SetNull();
     225
     226    /// \brief
    219227    /// Test whether the parameter value is null.
    220228    ///
     
    621629    /// \param params (MgParameterCollection)
    622630    /// Parameters binded to the SQL statement.
     631    /// \param params (MgTransaction)
     632    /// Transaction to exectue the SQL statement.
    623633    ///
    624634    /// \return
     
    626636    ///
    627637    virtual MgSqlDataReader* ExecuteSqlQuery( MgResourceIdentifier* resource,
    628                                               CREFSTRING sqlStatement,
    629                                               MgParameterCollection* params ) = 0;
     638                                              CREFSTRING sqlStatement,                                             
     639                                              MgParameterCollection* params,
     640                                              MgTransaction* transaction ) = 0;
    630641
    631642    ///////////////////////////////////////////////////////
     
    640651    /// \param params (MgParameterCollection)
    641652    /// Parameters binded to the SQL statement.
     653    /// \param params (MgTransaction)
     654    /// Transaction to exectue the SQL statement.
    642655    ///
    643656    /// \return
     
    647660    virtual INT32 ExecuteSqlNonQuery( MgResourceIdentifier* resource,
    648661                                      CREFSTRING sqlNonSelectStatement,
    649                                       MgParameterCollection* params ) = 0;
     662                                      MgParameterCollection* params,
     663                                      MgTransaction* transaction ) = 0;
    650664};
    651665}}}