SqlCeRemoteDataAccess Constructor (String, String, String, String)
Initializes a new instance of the SqlCeRemoteDataAccess object and configures it for a Basic or Integrated Windows authentication 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, _
internetLogin As String, _
internetPassword As String, _
localConnectionString As String _
)
'Usage
Dim internetUrl As String
Dim internetLogin As String
Dim internetPassword As String
Dim localConnectionString As String
Dim instance As New SqlCeRemoteDataAccess(internetUrl, _
internetLogin, internetPassword, _
localConnectionString)
public SqlCeRemoteDataAccess(
string internetUrl,
string internetLogin,
string internetPassword,
string localConnectionString
)
public:
SqlCeRemoteDataAccess(
String^ internetUrl,
String^ internetLogin,
String^ internetPassword,
String^ localConnectionString
)
new :
internetUrl:string *
internetLogin:string *
internetPassword:string *
localConnectionString:string -> SqlCeRemoteDataAccess
public function SqlCeRemoteDataAccess(
internetUrl : String,
internetLogin : String,
internetPassword : String,
localConnectionString : String
)
Parameters
- internetUrl
Type: System. . :: . .String
The URL used to connect to the Server Agent.
- internetLogin
Type: System. . :: . .String
The login name used when connecting to the Server Agent.
- internetPassword
Type: System. . :: . .String
The password used when connecting to the Server Agent.
- localConnectionString
Type: System. . :: . .String
The OLE DB connection string for the database.
Remarks
This constructor initializes the InternetUrl, InternetLogin, InternetPassword, 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();
}