Metodo AdomdDataAdapter.Update (DataSet)
Calls the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified data set.
Spazio dei nomi Microsoft.AnalysisServices.AdomdClient
Assembly: Microsoft.AnalysisServices.AdomdClient (in Microsoft.AnalysisServices.AdomdClient.dll)
Sintassi
'Dichiarazione
Public Overrides Function Update ( _
dataSet As DataSet _
) As Integer
'Utilizzo
Dim instance As AdomdDataAdapter
Dim dataSet As DataSet
Dim returnValue As Integer
returnValue = instance.Update(dataSet)
public override int Update(
DataSet dataSet
)
public:
virtual int Update(
DataSet^ dataSet
) override
abstract Update :
dataSet:DataSet -> int
override Update :
dataSet:DataSet -> int
public override function Update(
dataSet : DataSet
) : int
Parametri
- dataSet
Tipo: System.Data.DataSet
The data set that is used to update the data source.
Valore restituito
Tipo: System.Int32
The number of rows successfully updated from the data set.
Implementa
Eccezioni
Eccezione | Condizione |
---|---|
System.NotSupportedException | The member is called. |
Osservazioni
This member throws System.NotSupportedException exception when called.