OdbcHandle.cs 501 B

12345678910111213141516
  1. using System.Text;
  2. using System.Runtime.InteropServices;
  3. namespace System.Data.Odbc {
  4. internal abstract class OdbcHandle : SafeHandle {
  5. protected OdbcHandle(ODBC32.SQL_HANDLE handleType, OdbcHandle parentHandle) : base(IntPtr.Zero, true) {
  6. throw new NotImplementedException ();
  7. }
  8. internal ODBC32.RetCode GetDiagnosticRecord(short record, out string sqlState, StringBuilder message, out int nativeError, out short cchActual) {
  9. throw new NotImplementedException ();
  10. }
  11. }
  12. }