Developers community number 1 connection string reference

Connection strings for Exchange

Community Forums
Find solutions and post questions regarding connection string related issues.

Exchange OLE DB provider

Type OLE DB Provider
Usage ExOLEDB.DataSource
Manufacturer Microsoft

Exchange OLE DB provider

ExOLEDB.DataSource

Specify store in the connection open command like this: conn.open "http://servername/mypublicstore"

Check out this article at InformIT >>

 
 

.NET Framework Data Provider for OLE DB

Type .NET Framework Wrapper Class Library
Usage System.Data.OleDb.OleDbConnection
Manufacturer Microsoft

Bridging to Exchange OLE DB provider

This is just one connection string sample for the wrapping OleDbConnection class that calls the underlying OLEDB provider. See respective OLE DB provider for more connection strings to use with this class.

ExOLEDB.DataSource
 
 

ExDAV

Type .NET Framework Class Library
Usage
Manufacturer Microsoft

ADO.NET

ExDAV.ExSearcher searcher = new ExDav.ExSearcher("http://mystore.edu/myresource");
searcher.Depth = ExDAV.ExRequest.ExRequestDepths.AllChildrenWithRoot;
searcher.ExProps.Add("DAV:", "creationdate");
ExDAV.ExResponse resp = searcher.Search("WHERE \"DAV:isfolder\" = true");

System.Data.DataSet ds = resp.GetDataSet("dsMyExDataSet", "dsMyExTableName");
 
Copyright © 2012 ConnectionStrings.com   |   All Rights Reserved   |   Powered by CSAS   |   Send feedback, articles, requests and more connection strings here.