| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- //
- // System.Data.Odbc.OdbcDataReader
- //
- // Author:
- // Brian Ritchie ([email protected])
- //
- // Copyright (C) Brian Ritchie, 2002
- //
- using System.Collections;
- using System.ComponentModel;
- using System.Data;
- using System.Data.Common;
- using System.Runtime.InteropServices;
- using System.Runtime.Serialization;
- namespace System.Data.Odbc
- {
- public class OdbcException : SystemException
- {
- OdbcErrorCollection col;
- internal OdbcException(OdbcError Error) : base (Error.Message)
- {
- col=new OdbcErrorCollection();
- col.Add(Error);
- }
- public int ErrorCode
- {
- get
- {
- return col[0].NativeError;
- }
- }
- public OdbcErrorCollection Errors
- {
- get
- {
- return col;
- }
- }
- public override string Source
- {
- get
- {
- return col[0].Source;
- }
- }
- #region Methods
- [MonoTODO]
- public override void GetObjectData (SerializationInfo si, StreamingContext context)
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
|