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
Usage: ExOLEDB.DataSource
Manufacturer: Microsoft
More info about this provider »
More info about this provider »
Customize string example values »
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
Usage: System.Data.OleDb.OleDbConnection
Manufacturer: Microsoft
More info about this wrapper class library »
More info about this wrapper class library »
Customize string example values »
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:
Usage:
Manufacturer: Microsoft
More info about this class library »
More info about this class library »
Customize string example values »
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
