Changes between Version 5 and Version 6 of MapGuideRfc80
- Timestamp:
- 08/06/09 17:46:39 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MapGuideRfc80
v5 v6 217 217 218 218 /// \brief 219 /// Set the parameter value to null. 220 /// 221 /// \return 222 /// Returns nothing. 223 /// 224 void SetNull(); 225 226 /// \brief 219 227 /// Test whether the parameter value is null. 220 228 /// … … 621 629 /// \param params (MgParameterCollection) 622 630 /// Parameters binded to the SQL statement. 631 /// \param params (MgTransaction) 632 /// Transaction to exectue the SQL statement. 623 633 /// 624 634 /// \return … … 626 636 /// 627 637 virtual MgSqlDataReader* ExecuteSqlQuery( MgResourceIdentifier* resource, 628 CREFSTRING sqlStatement, 629 MgParameterCollection* params ) = 0; 638 CREFSTRING sqlStatement, 639 MgParameterCollection* params, 640 MgTransaction* transaction ) = 0; 630 641 631 642 /////////////////////////////////////////////////////// … … 640 651 /// \param params (MgParameterCollection) 641 652 /// Parameters binded to the SQL statement. 653 /// \param params (MgTransaction) 654 /// Transaction to exectue the SQL statement. 642 655 /// 643 656 /// \return … … 647 660 virtual INT32 ExecuteSqlNonQuery( MgResourceIdentifier* resource, 648 661 CREFSTRING sqlNonSelectStatement, 649 MgParameterCollection* params ) = 0; 662 MgParameterCollection* params, 663 MgTransaction* transaction ) = 0; 650 664 }; 651 665 }}}