Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Data / System / Data / Odbc / OdbcException.cs / 1 / OdbcException.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- using System; using System.ComponentModel; //Component using System.Collections; //ICollection using System.Data; using System.Data.Common; using System.Globalization; using System.Runtime.InteropServices; using System.Runtime.Serialization; using System.Text; namespace System.Data.Odbc { [Serializable] #if WINFSInternalOnly internal #else public #endif sealed class OdbcException : System.Data.Common.DbException { OdbcErrorCollection odbcErrors = new OdbcErrorCollection(); ODBC32.RETCODE _retcode; // DO NOT REMOVE! only needed for serialization purposes, because Everett had it. static internal OdbcException CreateException(OdbcErrorCollection errors, ODBC32.RetCode retcode) { StringBuilder builder = new StringBuilder(); foreach (OdbcError error in errors) { if (builder.Length > 0) { builder.Append(Environment.NewLine); } builder.Append(Res.GetString(Res.Odbc_ExceptionMessage, ODBC32.RetcodeToString(retcode), error.SQLState, error.Message)); // MDAC 68337 } OdbcException exception = new OdbcException(builder.ToString(), errors); return exception; } internal OdbcException(string message, OdbcErrorCollection errors) : base(message) { odbcErrors = errors; HResult = HResults.OdbcException; } // runtime will call even if private... private OdbcException(SerializationInfo si, StreamingContext sc) : base(si, sc) { _retcode = (ODBC32.RETCODE) si.GetValue("odbcRetcode", typeof(ODBC32.RETCODE)); odbcErrors = (OdbcErrorCollection) si.GetValue("odbcErrors", typeof(OdbcErrorCollection)); HResult = HResults.OdbcException; } public OdbcErrorCollection Errors { get { return odbcErrors; } } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)] override public void GetObjectData(SerializationInfo si, StreamingContext context) { // MDAC 72003 if (null == si) { throw new ArgumentNullException("si"); } si.AddValue("odbcRetcode", _retcode, typeof(ODBC32.RETCODE)); si.AddValue("odbcErrors", odbcErrors, typeof(OdbcErrorCollection)); base.GetObjectData(si, context); } // mdac bug 62559 - if we don't have it return nothing (empty string) override public string Source { get { if (0 < Errors.Count) { string source = Errors[0].Source; return ADP.IsEmpty(source) ? "" : source; // base.Source; } return ""; // base.Source; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- using System; using System.ComponentModel; //Component using System.Collections; //ICollection using System.Data; using System.Data.Common; using System.Globalization; using System.Runtime.InteropServices; using System.Runtime.Serialization; using System.Text; namespace System.Data.Odbc { [Serializable] #if WINFSInternalOnly internal #else public #endif sealed class OdbcException : System.Data.Common.DbException { OdbcErrorCollection odbcErrors = new OdbcErrorCollection(); ODBC32.RETCODE _retcode; // DO NOT REMOVE! only needed for serialization purposes, because Everett had it. static internal OdbcException CreateException(OdbcErrorCollection errors, ODBC32.RetCode retcode) { StringBuilder builder = new StringBuilder(); foreach (OdbcError error in errors) { if (builder.Length > 0) { builder.Append(Environment.NewLine); } builder.Append(Res.GetString(Res.Odbc_ExceptionMessage, ODBC32.RetcodeToString(retcode), error.SQLState, error.Message)); // MDAC 68337 } OdbcException exception = new OdbcException(builder.ToString(), errors); return exception; } internal OdbcException(string message, OdbcErrorCollection errors) : base(message) { odbcErrors = errors; HResult = HResults.OdbcException; } // runtime will call even if private... private OdbcException(SerializationInfo si, StreamingContext sc) : base(si, sc) { _retcode = (ODBC32.RETCODE) si.GetValue("odbcRetcode", typeof(ODBC32.RETCODE)); odbcErrors = (OdbcErrorCollection) si.GetValue("odbcErrors", typeof(OdbcErrorCollection)); HResult = HResults.OdbcException; } public OdbcErrorCollection Errors { get { return odbcErrors; } } [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)] override public void GetObjectData(SerializationInfo si, StreamingContext context) { // MDAC 72003 if (null == si) { throw new ArgumentNullException("si"); } si.AddValue("odbcRetcode", _retcode, typeof(ODBC32.RETCODE)); si.AddValue("odbcErrors", odbcErrors, typeof(OdbcErrorCollection)); base.GetObjectData(si, context); } // mdac bug 62559 - if we don't have it return nothing (empty string) override public string Source { get { if (0 < Errors.Count) { string source = Errors[0].Source; return ADP.IsEmpty(source) ? "" : source; // base.Source; } return ""; // base.Source; } } } } // 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
- ConfigXmlAttribute.cs
- ResourceReferenceKeyNotFoundException.cs
- ProxyManager.cs
- AppSettings.cs
- EntityDesignerBuildProvider.cs
- ClientData.cs
- ActiveXContainer.cs
- GPRECTF.cs
- Bezier.cs
- StateWorkerRequest.cs
- ElementAtQueryOperator.cs
- Rect3DValueSerializer.cs
- MimeTypeAttribute.cs
- StickyNoteHelper.cs
- NameValueConfigurationCollection.cs
- ResolveNameEventArgs.cs
- NativeMethods.cs
- VScrollProperties.cs
- CodeAttributeArgumentCollection.cs
- ArrayMergeHelper.cs
- GestureRecognizer.cs
- RadioButtonRenderer.cs
- ExeConfigurationFileMap.cs
- InternalTypeHelper.cs
- FigureParaClient.cs
- Clause.cs
- XhtmlBasicValidationSummaryAdapter.cs
- WrapPanel.cs
- SoapExtension.cs
- DataGridAddNewRow.cs
- AuthorizationRule.cs
- XmlSerializableServices.cs
- SeekableMessageNavigator.cs
- OdbcException.cs
- ServiceBuildProvider.cs
- HTTPNotFoundHandler.cs
- ZipIOBlockManager.cs
- HttpHeaderCollection.cs
- ErrorStyle.cs
- ExpressionTextBox.xaml.cs
- SessionPageStatePersister.cs
- BooleanExpr.cs
- XPathDocumentIterator.cs
- HitTestFilterBehavior.cs
- DispatchChannelSink.cs
- HelpInfo.cs
- Margins.cs
- PathStreamGeometryContext.cs
- StringToken.cs
- IImplicitResourceProvider.cs
- PropertyToken.cs
- AppDomainUnloadedException.cs
- Typography.cs
- HitTestParameters.cs
- NativeMethods.cs
- SafeLibraryHandle.cs
- LayoutDump.cs
- DetailsViewUpdateEventArgs.cs
- ISessionStateStore.cs
- SelfIssuedAuthProofToken.cs
- TdsParserHelperClasses.cs
- initElementDictionary.cs
- XmlWellformedWriterHelpers.cs
- ItemMap.cs
- PeerApplication.cs
- SortedSetDebugView.cs
- EntityDataSourceWrapperPropertyDescriptor.cs
- ClientSideQueueItem.cs
- AnimationTimeline.cs
- Solver.cs
- X509Certificate2Collection.cs
- HelpKeywordAttribute.cs
- XPathException.cs
- PerformanceCounters.cs
- SqlReferenceCollection.cs
- ISO2022Encoding.cs
- CursorConverter.cs
- SecurityKeyType.cs
- PartialArray.cs
- LinearGradientBrush.cs
- DesignerUtility.cs
- ThreadStaticAttribute.cs
- ToolStripActionList.cs
- SmtpNetworkElement.cs
- TraceEventCache.cs
- Path.cs
- ZeroOpNode.cs
- tooltip.cs
- RegexStringValidator.cs
- TripleDES.cs
- KeyFrames.cs
- Span.cs
- TextHintingModeValidation.cs
- RegexWorker.cs
- SchemaImporterExtension.cs
- EngineSite.cs
- OptimalTextSource.cs
- CodeNamespaceImport.cs
- InputBinding.cs
- diagnosticsswitches.cs