SqlCeRemoteDataAccess Class
.NET Framework 2.0
Initializes a new instance of the SqlCeRemoteDataAccess object. For more information about Remote Data Access, see the SQL Server Mobile Books Online.
Namespace: System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (in system.data.sqlserverce.dll)
Assembly: System.Data.SqlServerCe (in system.data.sqlserverce.dll)
The following example shows how to initialize a new instance of the SqlCeRemoteDataAccess object.
' Connection String to the SQL Server ' Dim rdaOleDbConnectString As String = "Data Source=MySqlServer;Initial Catalog=AdventureWorks; " & _ "User Id=username;Password = <password>" ' Initialize RDA Object ' Dim rda As SqlCeRemoteDataAccess = Nothing Try ' Try the Pull Operation ' rda = New SqlCeRemoteDataAccess( _ "http://www.adventure-works.com/sqlmobile/sqlcesa30.dll", _ "MyLogin", _ "<password>", _ "Data Source=MyDatabase.sdf") rda.Pull("Employees", "SELECT * FROM DimEmployee", rdaOleDbConnectString, _ RdaTrackOption.TrackingOnWithIndexes, "ErrorTable") ' or, try one of these overloads: ' rda.Pull("Employees", "SELECT * FROM DimEmployee", rdaOleDbConnectString, _ ' RdaTrackOption.TrackingOnWithIndexes) ' ' rda.Pull("Employees", "SELECT * FROM DimEmployee", rdaOleDbConnectString) Catch ' Handle errors here ' Finally ' Dispose of the RDA object ' rda.Dispose() End Try
Windows CE, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows XP Professional x64 Edition, Windows XP SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: