ODB.cs 435 B

1234567891011121314
  1. using System.Data.Common;
  2. namespace System.Data.OleDb {
  3. internal static class ODB {
  4. // used by OleDbConnection to create and verify OLE DB Services
  5. internal const string DataLinks_CLSID = "CLSID\\{2206CDB2-19C1-11D1-89E0-00C04FD7A829}\\InprocServer32";
  6. static internal InvalidOperationException MDACNotAvailable(Exception inner) {
  7. return ADP.DataAdapter(Res.GetString(Res.OleDb_MDACNotAvailable), inner);
  8. }
  9. }
  10. }