Factor mono_get_exception_missing_field and mono_get_exception_missin… (#9282)
[mono-project.git] / mcs / class / System.Data / corefx / Odbc / OdbcConnection.cs
blobfd7503c87018854b4232d0c3047e9a8c4ac74f09
1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
5 using System;
6 using System.Data;
7 using System.Data.Common;
8 using System.Security;
9 using System.Security.Permissions;
11 namespace System.Data.Odbc
13 partial class OdbcConnection
15 [MonoTODO]
16 public void EnlistDistributedTransaction(System.EnterpriseServices.ITransaction transaction) => throw new NotImplementedException();
18 [MonoTODO]
19 public override void EnlistTransaction(System.Transactions.Transaction transaction) => throw new NotImplementedException();
21 [MonoTODO]
22 public override System.Data.DataTable GetSchema() => throw new NotImplementedException();
24 [MonoTODO]
25 public override System.Data.DataTable GetSchema(string collectionName) => throw new NotImplementedException();
27 [MonoTODO]
28 public override System.Data.DataTable GetSchema(string collectionName, string[] restrictionValues) => throw new NotImplementedException();