SqlCeReplication.ReinitializeSubscription Method
Marca uma assinatura para reinicialização. Depois de chamar esse método, um aplicativo deve chamar o método Synchronize para baixar o instantâneo mais recente da publicação para o dispositivo.
Namespace: System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (em system.data.sqlserverce.dll)
Sintaxe
'Declaração
Public Sub ReinitializeSubscription ( _
uploadBeforeReinitialize As Boolean _
)
public void ReinitializeSubscription (
bool uploadBeforeReinitialize
)
public:
void ReinitializeSubscription (
bool uploadBeforeReinitialize
)
public void ReinitializeSubscription (
boolean uploadBeforeReinitialize
)
public function ReinitializeSubscription (
uploadBeforeReinitialize : boolean
)
Parâmetros
- uploadBeforeReinitialize
Se True, as alterações do banco de dados de assinaturas são carregadas no Publicador antes de aplicar o instantâneo ao Assinante. O padrão é False.
Comentários
Um sinalizador é marcado na tabela do sistema de assinaturas do SQL Server Compact 3.5 para indicar que, durante a próxima sincronização, a assinatura deverá ser reinicializada. Depois de chamar o método ReinitializeSubscription, o aplicativo deve chamar o método Synchronize para excluir a réplica existente e baixar uma nova réplica publicação para o dispositivo baseado no Windows Mobile.
Exemplo
Dim repl As SqlCeReplication = Nothing
Try
' Create SqlCeReplication instance
'
'NOTE: when possible, prompt users to enter security
'credentials at runtime. If you store credentials in a file,
'you must secure the file to prevent unauthorized access.
'
repl = New SqlCeReplication()
repl.InternetUrl = "https://www.adventure-works.com/sqlmobile/sqlcesa35.dll"
repl.InternetLogin = "MyInternetLogin"
repl.InternetPassword = "<enterStrongPassword>"
repl.Publisher = "MyPublisher"
repl.PublisherDatabase = "MyPublisherDatabase"
repl.PublisherLogin = "MyPublisherLogin"
repl.PublisherPassword = "<enterStrongPassword>"
repl.Publication = "MyPublication"
repl.Subscriber = "MySubscriber"
repl.SubscriberConnectionString = "Data Source=MyDatabase.sdf"
' Mark the subscription for reinitialization with Upload first
'
repl.ReinitializeSubscription(True)
' Synchronize to the SQL Server to populate the Subscription
'
repl.Synchronize()
Catch
' Handle errors here
Finally
' Dispose the repl object
'
repl.Dispose()
End Try
SqlCeReplication repl = null;
try
{
// Create SqlCeReplication instance
//
//NOTE: when possible, prompt users to enter security
//credentials at runtime. If you store credentials in a file,
//you must secure the file to prevent unauthorized access.
//
repl = new SqlCeReplication();
repl.InternetUrl = "https://www.adventure-works.com/sqlmobile/sqlcesa35.dll";
repl.InternetLogin = "MyInternetLogin";
repl.InternetPassword = "<enterStrongPassword>";
repl.Publisher = "MyPublisher";
repl.PublisherDatabase = "MyPublisherDatabase";
repl.PublisherLogin = "MyPublisherLogin";
repl.PublisherPassword = "<enterStrongPassword>";
repl.Publication = "MyPublication";
repl.Subscriber = "MySubscriber";
repl.SubscriberConnectionString = "Data Source=MyDatabase.sdf";
// Mark the subscription for reinitialization with Upload first
//
repl.ReinitializeSubscription(true);
// Synchronize to the SQL Server to populate the Subscription
//
repl.Synchronize();
}
catch (SqlCeException)
{
// Handle errors here
}
finally
{
// Dispose the repl object
//
repl.Dispose();
}
Segurança de thread
Quaisquer membros estáticos públicos (compartilhados no Microsoft Visual Basic) desse tipo são thread safe. Não há garantia de que qualquer membro de instância seja thread safe.
Plataformas
Plataformas de desenvolvimento
Windows Vista, Windows Mobile 5.0, Windows XP Professional with Service Pack 2 (SP2), Windows Server 2003, Windows Mobile 2003 for Pocket PC, Windows CE 5.0
Informações de versão
.NET Framework e NET Compact Framework
Com suporte no 3.5
.NET Framework
Com suporte no 3.0
.NET Compact Framework e .Net Framework
Com suporte no 2.0
Consulte também
Referência
SqlCeReplication Class
SqlCeReplication Members
System.Data.SqlServerCe Namespace