Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Data / System / Data / Odbc / OdbcError.cs / 1305376 / OdbcError.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- using System; using System.Data; namespace System.Data.Odbc { [Serializable] public 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
- XmlSchemaAnnotated.cs
- DbDataReader.cs
- ToolStripDesignerUtils.cs
- HtmlDocument.cs
- HttpClientCertificate.cs
- UncommonField.cs
- TimersDescriptionAttribute.cs
- StylesEditorDialog.cs
- SecurityContextTokenValidationException.cs
- HwndSourceParameters.cs
- ScriptIgnoreAttribute.cs
- PrimitiveXmlSerializers.cs
- BackgroundFormatInfo.cs
- XmlSchemaAnnotation.cs
- PassportIdentity.cs
- PolygonHotSpot.cs
- AttributeSetAction.cs
- MembershipValidatePasswordEventArgs.cs
- WindowAutomationPeer.cs
- DataGridToolTip.cs
- XmlSchemaComplexContentRestriction.cs
- NonClientArea.cs
- DrawingDrawingContext.cs
- FormCollection.cs
- Wow64ConfigurationLoader.cs
- WinEventWrap.cs
- TabControlCancelEvent.cs
- SqlNotificationRequest.cs
- ResourceCategoryAttribute.cs
- CatalogPartChrome.cs
- TemplateField.cs
- TextUtf8RawTextWriter.cs
- CurrentChangedEventManager.cs
- XmlConvert.cs
- IncrementalHitTester.cs
- IIS7WorkerRequest.cs
- URLBuilder.cs
- DefaultProxySection.cs
- OleAutBinder.cs
- LocalizableAttribute.cs
- DataControlFieldCollection.cs
- ImageSourceTypeConverter.cs
- Converter.cs
- DWriteFactory.cs
- RandomNumberGenerator.cs
- ReturnValue.cs
- TemplatedEditableDesignerRegion.cs
- WebPartVerbsEventArgs.cs
- BlobPersonalizationState.cs
- ModelServiceImpl.cs
- AssemblySettingAttributes.cs
- UInt64Converter.cs
- PartManifestEntry.cs
- InfoCardRSAPKCS1SignatureFormatter.cs
- ExceptionHandlersDesigner.cs
- EventHandlerService.cs
- MetabaseReader.cs
- BufferedWebEventProvider.cs
- Lease.cs
- MemberInfoSerializationHolder.cs
- SessionEndingEventArgs.cs
- _AcceptOverlappedAsyncResult.cs
- AvTrace.cs
- SignatureToken.cs
- DrawingDrawingContext.cs
- SpecularMaterial.cs
- formatter.cs
- StringSource.cs
- ClientTargetCollection.cs
- SqlClientPermission.cs
- DPTypeDescriptorContext.cs
- SecuritySessionSecurityTokenProvider.cs
- DockingAttribute.cs
- ObjectListItemCollection.cs
- TypeValidationEventArgs.cs
- BaseParser.cs
- XmlCompatibilityReader.cs
- ScrollContentPresenter.cs
- MarginCollapsingState.cs
- UIElement3DAutomationPeer.cs
- SqlMethodAttribute.cs
- WpfGeneratedKnownTypes.cs
- TypeDescriptor.cs
- XmlNavigatorFilter.cs
- ThrowHelper.cs
- HttpChannelBindingToken.cs
- TypeUtils.cs
- TransactionState.cs
- OdbcStatementHandle.cs
- RepeatInfo.cs
- VarRemapper.cs
- _SSPIWrapper.cs
- SearchForVirtualItemEventArgs.cs
- DataGridColumnStyleMappingNameEditor.cs
- CleanUpVirtualizedItemEventArgs.cs
- CompiledQuery.cs
- StringComparer.cs
- TraceListener.cs
- HtmlGenericControl.cs
- SerializationSectionGroup.cs