SqlCeRemoteDataAccess Constructor (String, String)
Initializes a new instance of the SqlCeRemoteDataAccess object and configures it for anonymous access to Internet Information Services (IIS).
Namespace: System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)
Syntax
'Declaration
Public Sub New ( _
internetUrl As String, _
localConnectionString As String _
)
'Usage
Dim internetUrl As String
Dim localConnectionString As String
Dim instance As New SqlCeRemoteDataAccess(internetUrl, _
localConnectionString)
public SqlCeRemoteDataAccess(
string internetUrl,
string localConnectionString
)
public:
SqlCeRemoteDataAccess(
String^ internetUrl,
String^ localConnectionString
)
new :
internetUrl:string *
localConnectionString:string -> SqlCeRemoteDataAccess
public function SqlCeRemoteDataAccess(
internetUrl : String,
localConnectionString : String
)
Parameters
- internetUrl
Type: System. . :: . .String
The URL used to connect to the Server Agent.
- localConnectionString
Type: System. . :: . .String
The OLE DB connection string for the database.
Remarks
This constructor initializes the InternetUrl and LocalConnectionString properties. The rest of the properties are assigned their default values. You then can change the value for any property.
Examples
' Connection String to the SQL Server.
Dim rdaOleDbConnectString As String = _
"Provider=sqloledb; Data Source=MySqlServer;Initial Catalog=Northwind; " + _
"User Id=username;Password = <password>"
' Initialize RDA Object.
Dim rda As SqlCeRemoteDataAccess = Nothing
Try
'Try the Pull Operation.
rda = New SqlCeRemoteDataAccess()
rda.InternetLogin = "MyLogin"
rda.InternetPassword = "<password>"
rda.InternetUrl = "<http://www.northwindtraders.com/sqlce/sscesa35.dll>"
rda.LocalConnectionString = "Provider=Microsoft.SQLSERVER.OLEDB.CE.2.0;Data Source=\ssce.sdf"
rda.Pull("Employees", "Select * from Employees", _
rdaOleDbConnectString, _
RdaTrackOption.TrackingOnWithIndexes, _
"ErrorTable")
Catch e As SqlCeException
'Use you own Error Handling Routine.
'ShowErrors(e);
Finally
'Dispose of the RDA Object.
rda.Dispose()
End Try
// Connection String to the SQL Server.
string rdaOleDbConnectString = "Provider=sqloledb; Data Source=MySqlServer;Initial Catalog=Northwind; " +
"User Id=username;Password = <password>";
// Initialize RDA Object.
SqlCeRemoteDataAccess rda = null;
try {
//Try the Pull Operation.
rda = new SqlCeRemoteDataAccess();
rda.InternetLogin = "MyLogin";
rda.InternetPassword = "<password>";
rda.InternetUrl = "<http://www.northwindtraders.com/sqlce/sscesa35.dll>";
rda.LocalConnectionString = @"Provider=Microsoft.SQLSERVER.OLEDB.CE.2.0;Data Source=\ssce.sdf";
rda.Pull(
"Employees",
"Select * from Employees",
rdaOleDbConnectString,
RdaTrackOption.TrackingOnWithIndexes ,
"ErrorTable");
}
catch(SqlCeException) {
//Use you own Error Handling Routine.
}
finally {
//Dispose of the RDA Object.
rda.Dispose();
}