OdbcError.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Data / System / Data / Odbc / OdbcError.cs / 1 / OdbcError.cs

                            //------------------------------------------------------------------------------ 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// [....] 
// [....]
//----------------------------------------------------------------------------- 
 
using System;
using System.Data; 

namespace System.Data.Odbc
{
    [Serializable] 
#if WINFSInternalOnly
    internal 
#else 
    public
#endif 
    sealed class OdbcError {
        //Data
        internal string _message;
        internal string _state; 
        internal int    _nativeerror;
        internal string _source; 
 
        internal OdbcError(string source, string message, string state, int nativeerror) {
            _source = source; 
            _message    = message;
            _state      = state;
            _nativeerror= nativeerror;
        } 

        public string Message { 
            get { 
                return ((null != _message) ? _message : String.Empty);
            } 
        }

        public string SQLState {
            get { 
                return _state;
            } 
        } 

        public int NativeError { 
            get {
                return _nativeerror;
            }
        } 

        public string Source { 
            get { 
                return ((null != _source) ? _source : String.Empty);
            } 
        }

        internal void SetSource (string Source) {
            _source = Source; 
        }
 
        override public string ToString() { 
            return Message;
        } 
    }
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------ 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// [....] 
// [....]
//----------------------------------------------------------------------------- 
 
using System;
using System.Data; 

namespace System.Data.Odbc
{
    [Serializable] 
#if WINFSInternalOnly
    internal 
#else 
    public
#endif 
    sealed class OdbcError {
        //Data
        internal string _message;
        internal string _state; 
        internal int    _nativeerror;
        internal string _source; 
 
        internal OdbcError(string source, string message, string state, int nativeerror) {
            _source = source; 
            _message    = message;
            _state      = state;
            _nativeerror= nativeerror;
        } 

        public string Message { 
            get { 
                return ((null != _message) ? _message : String.Empty);
            } 
        }

        public string SQLState {
            get { 
                return _state;
            } 
        } 

        public int NativeError { 
            get {
                return _nativeerror;
            }
        } 

        public string Source { 
            get { 
                return ((null != _source) ? _source : String.Empty);
            } 
        }

        internal void SetSource (string Source) {
            _source = Source; 
        }
 
        override public string ToString() { 
            return Message;
        } 
    }
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK