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
- UpWmlPageAdapter.cs
- TypeForwardedToAttribute.cs
- DynamicResourceExtensionConverter.cs
- PickBranch.cs
- HtmlTable.cs
- RegexTree.cs
- StackOverflowException.cs
- DataGridViewTopRowAccessibleObject.cs
- InstanceDescriptor.cs
- HitTestWithPointDrawingContextWalker.cs
- LassoSelectionBehavior.cs
- RightsManagementEncryptionTransform.cs
- TargetConverter.cs
- RangeValidator.cs
- JumpList.cs
- DynamicILGenerator.cs
- TreeViewDesigner.cs
- DesignerAttributeInfo.cs
- Frame.cs
- elementinformation.cs
- Decorator.cs
- MappableObjectManager.cs
- WindowsMenu.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- HtmlWindow.cs
- IListConverters.cs
- ServiceAuthorizationBehavior.cs
- LicenseProviderAttribute.cs
- XamlParser.cs
- _ChunkParse.cs
- WindowShowOrOpenTracker.cs
- Variant.cs
- TdsParserStaticMethods.cs
- DbMetaDataFactory.cs
- DataGridViewSelectedRowCollection.cs
- SqlAliasesReferenced.cs
- EnlistmentTraceIdentifier.cs
- Attribute.cs
- DependencyPropertyConverter.cs
- InfoCardRSAPKCS1KeyExchangeDeformatter.cs
- UserInitiatedNavigationPermission.cs
- AmbientValueAttribute.cs
- GlobalizationAssembly.cs
- Queue.cs
- StrokeCollectionDefaultValueFactory.cs
- PropertyEntry.cs
- SerialErrors.cs
- StrongNamePublicKeyBlob.cs
- VectorAnimationBase.cs
- HashMembershipCondition.cs
- OdbcCommandBuilder.cs
- SqlConnection.cs
- ModuleBuilder.cs
- JsonSerializer.cs
- LocatorBase.cs
- EventLogLink.cs
- BamlLocalizationDictionary.cs
- SQLInt32Storage.cs
- Int16.cs
- WrappingXamlSchemaContext.cs
- _LocalDataStoreMgr.cs
- DetailsViewDeleteEventArgs.cs
- AuthenticationModuleElement.cs
- TextSpan.cs
- ComboBox.cs
- CommonProperties.cs
- basecomparevalidator.cs
- ReadWriteObjectLock.cs
- LinearGradientBrush.cs
- PageContent.cs
- TakeQueryOptionExpression.cs
- CodeMemberProperty.cs
- TrackingValidationObjectDictionary.cs
- Utils.cs
- SessionEndedEventArgs.cs
- TreeViewDesigner.cs
- GiveFeedbackEvent.cs
- StrongNameUtility.cs
- StyleCollectionEditor.cs
- MsdtcClusterUtils.cs
- ObjectQueryState.cs
- MergeEnumerator.cs
- LoginNameDesigner.cs
- XmlSerializerNamespaces.cs
- AliasedSlot.cs
- BitmapFrame.cs
- RelationshipSet.cs
- TextEvent.cs
- FocusChangedEventArgs.cs
- HttpHandler.cs
- Predicate.cs
- FontCacheUtil.cs
- Models.cs
- StringUtil.cs
- DeferredReference.cs
- XmlSerializerVersionAttribute.cs
- Script.cs
- SafeFileMapViewHandle.cs
- OpCodes.cs
- WorkflowServiceHost.cs