Merge pull request #2107 from kasthack/system.web.sr
[mono.git] / mcs / class / System.Data / ReferenceSources / ODB.cs
1 using System.Data.Common;
2
3 namespace System.Data.OleDb {
4
5         internal static class ODB {
6
7                 // used by OleDbConnection to create and verify OLE DB Services
8                 internal const string DataLinks_CLSID = "CLSID\\{2206CDB2-19C1-11D1-89E0-00C04FD7A829}\\InprocServer32";
9
10                 static internal InvalidOperationException MDACNotAvailable(Exception inner) {
11                         return ADP.DataAdapter(Res.GetString(Res.OleDb_MDACNotAvailable), inner);
12                 }        
13         }
14 }