Connection strings for Exchange
Providers 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
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"
.NET Framework Data Provider for OLE DB
Type
.NET Framework Wrapper Class Library
Usage System.Data.OleDb.OleDbConnection
Manufacturer Microsoft
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
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");
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");
Selected Articles
