3c1f479b9d
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
14 lines
435 B
C#
14 lines
435 B
C#
using System.Data.Common;
|
|
|
|
namespace System.Data.OleDb {
|
|
|
|
internal static class ODB {
|
|
|
|
// used by OleDbConnection to create and verify OLE DB Services
|
|
internal const string DataLinks_CLSID = "CLSID\\{2206CDB2-19C1-11D1-89E0-00C04FD7A829}\\InprocServer32";
|
|
|
|
static internal InvalidOperationException MDACNotAvailable(Exception inner) {
|
|
return ADP.DataAdapter(Res.GetString(Res.OleDb_MDACNotAvailable), inner);
|
|
}
|
|
}
|
|
} |