Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SecurityHelper.cs
- DefaultAuthorizationContext.cs
- ZipIOExtraFieldZip64Element.cs
- Error.cs
- XmlChildNodes.cs
- TableParaClient.cs
- XMLSchema.cs
- QfeChecker.cs
- BuilderPropertyEntry.cs
- HMACSHA512.cs
- EncodingNLS.cs
- ScriptMethodAttribute.cs
- FileDialog.cs
- BrowserCapabilitiesFactoryBase.cs
- AnnotationHelper.cs
- Frame.cs
- XmlException.cs
- List.cs
- GlyphRunDrawing.cs
- WebPartCatalogCloseVerb.cs
- DataErrorValidationRule.cs
- controlskin.cs
- PerfCounterSection.cs
- RoleService.cs
- RelationshipConverter.cs
- Span.cs
- PeerNameResolver.cs
- SqlEnums.cs
- AnimatedTypeHelpers.cs
- IncomingWebRequestContext.cs
- DataGridViewColumnStateChangedEventArgs.cs
- COAUTHINFO.cs
- SubMenuStyle.cs
- BitmapMetadataBlob.cs
- XdrBuilder.cs
- DependencyPropertyValueSerializer.cs
- IconHelper.cs
- AssemblyAttributes.cs
- DataStreamFromComStream.cs
- SqlNodeAnnotations.cs
- WebBaseEventKeyComparer.cs
- CorrelationValidator.cs
- ServiceObjectContainer.cs
- CreateParams.cs
- UTF7Encoding.cs
- GlobalItem.cs
- InternalBase.cs
- FontWeight.cs
- EventlogProvider.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- DataTablePropertyDescriptor.cs
- RulePatternOps.cs
- GuidTagList.cs
- UrlAuthFailedErrorFormatter.cs
- DataGridViewSelectedCellsAccessibleObject.cs
- PropertyDescriptors.cs
- ExceptionHandler.cs
- CancellationState.cs
- sqlpipe.cs
- ListViewGroup.cs
- DocumentsTrace.cs
- ReaderWriterLockWrapper.cs
- IisTraceWebEventProvider.cs
- HttpResponseHeader.cs
- FileDetails.cs
- ImageClickEventArgs.cs
- ObjectViewFactory.cs
- MarshalByValueComponent.cs
- X509InitiatorCertificateClientElement.cs
- _AcceptOverlappedAsyncResult.cs
- ViewBase.cs
- Type.cs
- ToolTip.cs
- ModuleElement.cs
- SymbolTable.cs
- Focus.cs
- XamlRtfConverter.cs
- ToolStripItemImageRenderEventArgs.cs
- XsltQilFactory.cs
- SuppressMergeCheckAttribute.cs
- HttpWebRequest.cs
- ShapeTypeface.cs
- Vector3DIndependentAnimationStorage.cs
- ObjectViewEntityCollectionData.cs
- CacheVirtualItemsEvent.cs
- ContentType.cs
- TypeReference.cs
- ListViewDesigner.cs
- TableHeaderCell.cs
- DateTimeFormatInfoScanner.cs
- ModelVisual3D.cs
- WorkflowElementDialog.cs
- SelectionItemProviderWrapper.cs
- LOSFormatter.cs
- ServiceProviders.cs
- ISAPIApplicationHost.cs
- FontCacheUtil.cs
- PageEventArgs.cs
- FontCacheLogic.cs
- ComponentChangingEvent.cs