SqlCeRemoteDataAccess Members
Initializes a new instance of the SqlCeRemoteDataAccess object. For more information about Remote Data Access, see Using Remote Data Access (RDA).
The SqlCeRemoteDataAccess type exposes the following members.
Constructors
Name | Description | |
---|---|---|
SqlCeRemoteDataAccess() () () () | Initializes a new instance of the SqlCeRemoteDataAccess object. | |
SqlCeRemoteDataAccess(String, String) | Initializes a new instance of the SqlCeRemoteDataAccess object and configures it for anonymous access to Internet Information Services (IIS). | |
SqlCeRemoteDataAccess(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). |
Top
Methods
Name | Description | |
---|---|---|
Dispose() () () () | Releases all unmanaged resources. | |
Equals(Object) | (inherited from Object) | |
Finalize() () () () | (inherited from Object) | |
GetHashCode() () () () | (inherited from Object) | |
GetType() () () () | (inherited from Object) | |
MemberwiseClone() () () () | (inherited from Object) | |
Pull(String, String, String) | Downloads data from a remote database and stores that data in a single table in a local database. | |
Pull(String, String, String, RdaTrackOption) | Downloads data from a remote database and stores that data in a single table in a local database. | |
Pull(String, String, String, RdaTrackOption, String) | Downloads data from a remote database and stores that data in a single table in a local database. | |
Push(String, String) | Transmits changes from a pulled tracked table in back to the originating table. These changes are individually applied to the server in separate transactions. | |
Push(String, String, RdaBatchOption) | Transmits changes from a pulled tracked table in back to the table. These changes can be either individually applied to the server or batched together in a single transaction. | |
SubmitSql(String, String) | Submits SQL statements for execution on a database in on a remote server. | |
ToString() () () () | (inherited from Object) |
Top
Properties
Name | Description | |
---|---|---|
CompressionLevel | Specifies the amount of compression that will be used by the compression routines during Push and Pull operations. | |
ConnectionManager | Enables the SqlCeRemoteDataAccess object to use the smart device's Connection Manager API to establish a network connection. The connection is released at the end of synchronization. | |
ConnectionRetryTimeout | Specifies how long (in seconds) the client will continue to retry sending failed requests. | |
ConnectTimeout | Gets or sets the amount of time, in milliseconds, that the SqlCeRemoteDataAccess object waits for a connection to the server. | |
InternetLogin | Specifies the Internet Information Services (IIS) login name used when connecting to the Server Agent. | |
InternetPassword | Specifies the Internet Information Services (IIS) password used when connecting to the Server Agent. | |
InternetProxyLogin | Specifies the login name used when connecting to a proxy server (defined in the InternetProxyServer property) that requires authentication. | |
InternetProxyPassword | Specifies the password used when connecting to a proxy server (defined in the InternetProxyServer property) that requires authentication. | |
InternetProxyServer | Specifies the proxy server to use when accessing the HTTP resource specified in the InternetUrl property. | |
InternetUrl | Specifies the URL used to connect to the Server Agent. The Server Agent is the Internet Information Services (IIS) ISAPI DLL that connects the client to the Database. This property must be specified. | |
LocalConnectionString | Specifies the connection string for the database. | |
ReceiveTimeout | Gets or sets the amount of time, in milliseconds, that the SqlCeRemoteDataAccess object waits for the response to a server request. | |
SendTimeout | Gets or sets the amount of time, in milliseconds, that the SqlCeRemoteDataAccess object waits to send a request to the server. |
Top