Condividi tramite


Proprietà SqlCeCommand.UpdatedRowSource

Ottiene o imposta le modalità di applicazione dei risultati del comando all'oggetto DataRow quando utilizzato dal metodo Update dell'oggetto DbDataAdapter. Non utilizzare questa proprietà con il provider di dati .NET Compact Framework per SQL Server Compact.

Spazio dei nomi  System.Data.SqlServerCe
Assembly:  System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)

Sintassi

'Dichiarazione
Public Overrides Property UpdatedRowSource As UpdateRowSource
    Get
    Set
'Utilizzo
Dim instance As SqlCeCommand
Dim value As UpdateRowSource

value = instance.UpdatedRowSource

instance.UpdatedRowSource = value
public override UpdateRowSource UpdatedRowSource { get; set; }
public:
virtual property UpdateRowSource UpdatedRowSource {
    UpdateRowSource get () override;
    void set (UpdateRowSource value) override;
}
abstract UpdatedRowSource : UpdateRowSource with get, set
override UpdatedRowSource : UpdateRowSource with get, set
override function get UpdatedRowSource () : UpdateRowSource
override function set UpdatedRowSource (value : UpdateRowSource)

Valore proprietà

Tipo: System.Data.UpdateRowSource
Uno dei valori dell'oggetto UpdateRowSource. Il valore predefinito è Both. Se il comando viene generato automaticamente, il valore predefinito è None.

Implementa

IDbCommand.UpdatedRowSource

Eccezioni

Eccezione Condizione
ArgumentException

Il valore immesso non è uno dei valori dell'enumerazione UpdateRowSource.

Esempi

Dim cmd As SqlCeCommand = conn.CreateCommand()
cmd.CommandText = "SELECT * FROM Categories ORDER BY CategoryID"
cmd.CommandType = CommandType.Text
cmd.UpdatedRowSource = UpdateRowSource.Both
SqlCeCommand cmd = conn.CreateCommand();
cmd.CommandText = "SELECT * FROM Categories ORDER BY CategoryID";
cmd.CommandType = CommandType.Text;
cmd.UpdatedRowSource = UpdateRowSource.Both;

Vedere anche

Riferimento

SqlCeCommand Classe

Spazio dei nomi System.Data.SqlServerCe