AdomdDataAdapter.Update Método (DataSet)
Calls the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified data set.
Espacio de nombres: Microsoft.AnalysisServices.AdomdClient
Ensamblado: Microsoft.AnalysisServices.AdomdClient (en Microsoft.AnalysisServices.AdomdClient.dll)
Sintaxis
'Declaración
Public Overrides Function Update ( _
dataSet As DataSet _
) As Integer
'Uso
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
Parámetros
- dataSet
Tipo: System.Data.DataSet
The data set that is used to update the data source.
Valor devuelto
Tipo: System.Int32
The number of rows successfully updated from the data set.
Implementa
Excepciones
Excepción | Condición |
---|---|
System.NotSupportedException | The member is called. |
Comentarios
This member throws System.NotSupportedException exception when called.