Proprietà SyncAdapter.InsertCommand
Ottiene o imposta la query o la stored procedure utilizzata per inserire dati nel database server.
Spazio dei nomi: Microsoft.Synchronization.Data.Server
Assembly: Microsoft.Synchronization.Data.Server (in microsoft.synchronization.data.server.dll)
Sintassi
'Dichiarazione
Public Property InsertCommand As IDbCommand
'Utilizzo
Dim instance As SyncAdapter
Dim value As IDbCommand
value = instance.InsertCommand
instance.InsertCommand = value
public IDbCommand InsertCommand { get; set; }
public:
property IDbCommand^ InsertCommand {
IDbCommand^ get ();
void set (IDbCommand^ value);
}
/** @property */
public IDbCommand get_InsertCommand ()
/** @property */
public void set_InsertCommand (IDbCommand value)
public function get InsertCommand () : IDbCommand
public function set InsertCommand (value : IDbCommand)
Valore proprietà
Oggetto IDbCommand contenente una query o una stored procedure.
Osservazioni
I comandi dell'adattatore di sincronizzazione consentono di specificare le query e le stored procedure utilizzate per selezionare e applicare le modifiche al database server. Per ulteriori informazioni, vedere Procedura: specificare la sincronizzazione snapshot, di download, di caricamento e bidirezionale. Ogni comando utilizza una raccolta di variabili di sessione che consentono di passare i valori durante la sincronizzazione. Le variabili vengono specificate come gli altri parametri per le query o le stored procedure nei comandi ADO.NET. Per ulteriori informazioni, vedere Procedura: utilizzare le variabili di sessione.
Esempio
Nell'esempio di codice seguente viene creato un comando che inserisce righe nella tabella Customer
negli scenari di sincronizzazione bidirezionale e di solo caricamento. Il comando è una stored procedure definita in Impostare script per le procedure relative ai provider di database. Per visualizzare questo codice nel contesto di un esempio completo, vedere Procedura: gestire conflitti di dati ed errori.
SqlCommand customerInserts = new SqlCommand();
customerInserts.CommandType = CommandType.StoredProcedure;
customerInserts.CommandText = "usp_CustomerApplyInsert";
customerInserts.Parameters.Add("@" + SyncSession.SyncClientId, SqlDbType.UniqueIdentifier);
customerInserts.Parameters.Add("@" + SyncSession.SyncForceWrite, SqlDbType.Bit);
customerInserts.Parameters.Add("@" + SyncSession.SyncRowCount, SqlDbType.Int).Direction = ParameterDirection.Output;
customerInserts.Parameters.Add("@CustomerId", SqlDbType.UniqueIdentifier);
customerInserts.Parameters.Add("@CustomerName", SqlDbType.NVarChar);
customerInserts.Parameters.Add("@SalesPerson", SqlDbType.NVarChar);
customerInserts.Parameters.Add("@CustomerType", SqlDbType.NVarChar);
customerInserts.Connection = serverConn;
customerSyncAdapter.InsertCommand = customerInserts;
Dim customerInserts As New SqlCommand()
customerInserts.CommandType = CommandType.StoredProcedure
customerInserts.CommandText = "usp_CustomerApplyInsert"
customerInserts.Parameters.Add("@" + SyncSession.SyncClientId, SqlDbType.UniqueIdentifier)
customerInserts.Parameters.Add("@" + SyncSession.SyncForceWrite, SqlDbType.Bit)
customerInserts.Parameters.Add("@" + SyncSession.SyncRowCount, SqlDbType.Int).Direction = ParameterDirection.Output
customerInserts.Parameters.Add("@CustomerId", SqlDbType.UniqueIdentifier)
customerInserts.Parameters.Add("@CustomerName", SqlDbType.NVarChar)
customerInserts.Parameters.Add("@SalesPerson", SqlDbType.NVarChar)
customerInserts.Parameters.Add("@CustomerType", SqlDbType.NVarChar)
customerInserts.Connection = serverConn
customerSyncAdapter.InsertCommand = customerInserts
Vedere anche
Riferimento
Classe SyncAdapter
Membri SyncAdapter
Spazio dei nomi Microsoft.Synchronization.Data.Server