Changes between Version 37 and Version 38 of FDORfc33


Ignore:
Timestamp:
Apr 17, 2009, 9:50:48 AM (15 years ago)
Author:
gregboone
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FDORfc33

    v37 v38  
    175175
    176176    /// \brief
     177    /// Gets the record set fetch size that is to be used by
     178    /// the command when executing statements against the
     179    /// underlying Data Store. This parameter is typically set
     180    /// in situations where large amout of data is expected.
     181    /// providers will want to minimize the Data Store round
     182    /// trips: For example tetch 10,000 rows in one execution step.
     183    ///
     184    /// \return
     185    /// Returns the SQL commands batch fetch size.
     186    ///
     187    FDO_API virtual FdoInt32 GetFetchSize() = 0;
     188
     189    /// \brief
     190    /// Sets the record set fetch size that is to be used by
     191    /// the command when executing statements against the
     192    /// underlying Data Store. This parameter is typically set
     193    /// in situations where large amout of data is expected.
     194    /// providers will want to minimize the Data Store round
     195    /// trips: For example tetch 10,000 rows in one execution step.
     196    ///
     197    /// \param value
     198    /// Input the SQL commands batch fetch size.
     199    ///
     200    /// \return
     201    /// Returns nothing
     202    ///
     203    FDO_API virtual void SetFetchSize(FdoInt32 fetchSize) = 0;
     204
     205    /// \brief
    177206    /// Gets the Batch ParameterValue Collection that will be used for optimized
    178207    /// batch execution of multiple statements with a single command. Batch