Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Data / System / Data / SQLTypes / SQLResource.cs / 1 / SQLResource.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// junfang
// [....]
// [....]
//-----------------------------------------------------------------------------
//*************************************************************************
// @File: SQLResource.cs
//
// Create by: JunFang
//
// Purpose: Implementation of utilities in COM+ SQL Types Library.
// Includes interface INullable, exceptions SqlNullValueException
// and SqlTruncateException, and SQLDebug class.
//
// Notes:
//
// History:
//
// 10/22/99 JunFang Created.
//
// @EndHeader@
//*************************************************************************
namespace System.Data.SqlTypes {
using System;
using System.Data;
using System.Globalization;
internal sealed class SQLResource {
private SQLResource() { /* prevent utility class from being insantiated*/ }
internal static readonly String NullString = Res.GetString(Res.SqlMisc_NullString);
internal static readonly String MessageString = Res.GetString(Res.SqlMisc_MessageString);
internal static readonly String ArithOverflowMessage = Res.GetString(Res.SqlMisc_ArithOverflowMessage);
internal static readonly String DivideByZeroMessage = Res.GetString(Res.SqlMisc_DivideByZeroMessage);
internal static readonly String NullValueMessage = Res.GetString(Res.SqlMisc_NullValueMessage);
internal static readonly String TruncationMessage = Res.GetString(Res.SqlMisc_TruncationMessage);
internal static readonly String DateTimeOverflowMessage = Res.GetString(Res.SqlMisc_DateTimeOverflowMessage);
internal static readonly String ConcatDiffCollationMessage = Res.GetString(Res.SqlMisc_ConcatDiffCollationMessage);
internal static readonly String CompareDiffCollationMessage = Res.GetString(Res.SqlMisc_CompareDiffCollationMessage);
internal static readonly String InvalidFlagMessage = Res.GetString(Res.SqlMisc_InvalidFlagMessage);
internal static readonly String NumeToDecOverflowMessage = Res.GetString(Res.SqlMisc_NumeToDecOverflowMessage);
internal static readonly String ConversionOverflowMessage = Res.GetString(Res.SqlMisc_ConversionOverflowMessage);
internal static readonly String InvalidDateTimeMessage = Res.GetString(Res.SqlMisc_InvalidDateTimeMessage);
internal static readonly String TimeZoneSpecifiedMessage = Res.GetString(Res.SqlMisc_TimeZoneSpecifiedMessage);
internal static readonly String InvalidArraySizeMessage = Res.GetString(Res.SqlMisc_InvalidArraySizeMessage);
internal static readonly String InvalidPrecScaleMessage = Res.GetString(Res.SqlMisc_InvalidPrecScaleMessage);
internal static readonly String FormatMessage = Res.GetString(Res.SqlMisc_FormatMessage);
internal static readonly String NotFilledMessage = Res.GetString(Res.SqlMisc_NotFilledMessage);
internal static readonly String AlreadyFilledMessage = Res.GetString(Res.SqlMisc_AlreadyFilledMessage);
internal static readonly String ClosedXmlReaderMessage = Res.GetString(Res.SqlMisc_ClosedXmlReaderMessage);
internal static String InvalidOpStreamClosed(String method)
{
return Res.GetString(Res.SqlMisc_InvalidOpStreamClosed, method);
}
internal static String InvalidOpStreamNonWritable(String method)
{
return Res.GetString(Res.SqlMisc_InvalidOpStreamNonWritable, method);
}
internal static String InvalidOpStreamNonReadable(String method)
{
return Res.GetString(Res.SqlMisc_InvalidOpStreamNonReadable, method);
}
internal static String InvalidOpStreamNonSeekable(String method)
{
return Res.GetString(Res.SqlMisc_InvalidOpStreamNonSeekable, method);
}
} // SqlResource
} // namespace System
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// junfang
// [....]
// [....]
//-----------------------------------------------------------------------------
//*************************************************************************
// @File: SQLResource.cs
//
// Create by: JunFang
//
// Purpose: Implementation of utilities in COM+ SQL Types Library.
// Includes interface INullable, exceptions SqlNullValueException
// and SqlTruncateException, and SQLDebug class.
//
// Notes:
//
// History:
//
// 10/22/99 JunFang Created.
//
// @EndHeader@
//*************************************************************************
namespace System.Data.SqlTypes {
using System;
using System.Data;
using System.Globalization;
internal sealed class SQLResource {
private SQLResource() { /* prevent utility class from being insantiated*/ }
internal static readonly String NullString = Res.GetString(Res.SqlMisc_NullString);
internal static readonly String MessageString = Res.GetString(Res.SqlMisc_MessageString);
internal static readonly String ArithOverflowMessage = Res.GetString(Res.SqlMisc_ArithOverflowMessage);
internal static readonly String DivideByZeroMessage = Res.GetString(Res.SqlMisc_DivideByZeroMessage);
internal static readonly String NullValueMessage = Res.GetString(Res.SqlMisc_NullValueMessage);
internal static readonly String TruncationMessage = Res.GetString(Res.SqlMisc_TruncationMessage);
internal static readonly String DateTimeOverflowMessage = Res.GetString(Res.SqlMisc_DateTimeOverflowMessage);
internal static readonly String ConcatDiffCollationMessage = Res.GetString(Res.SqlMisc_ConcatDiffCollationMessage);
internal static readonly String CompareDiffCollationMessage = Res.GetString(Res.SqlMisc_CompareDiffCollationMessage);
internal static readonly String InvalidFlagMessage = Res.GetString(Res.SqlMisc_InvalidFlagMessage);
internal static readonly String NumeToDecOverflowMessage = Res.GetString(Res.SqlMisc_NumeToDecOverflowMessage);
internal static readonly String ConversionOverflowMessage = Res.GetString(Res.SqlMisc_ConversionOverflowMessage);
internal static readonly String InvalidDateTimeMessage = Res.GetString(Res.SqlMisc_InvalidDateTimeMessage);
internal static readonly String TimeZoneSpecifiedMessage = Res.GetString(Res.SqlMisc_TimeZoneSpecifiedMessage);
internal static readonly String InvalidArraySizeMessage = Res.GetString(Res.SqlMisc_InvalidArraySizeMessage);
internal static readonly String InvalidPrecScaleMessage = Res.GetString(Res.SqlMisc_InvalidPrecScaleMessage);
internal static readonly String FormatMessage = Res.GetString(Res.SqlMisc_FormatMessage);
internal static readonly String NotFilledMessage = Res.GetString(Res.SqlMisc_NotFilledMessage);
internal static readonly String AlreadyFilledMessage = Res.GetString(Res.SqlMisc_AlreadyFilledMessage);
internal static readonly String ClosedXmlReaderMessage = Res.GetString(Res.SqlMisc_ClosedXmlReaderMessage);
internal static String InvalidOpStreamClosed(String method)
{
return Res.GetString(Res.SqlMisc_InvalidOpStreamClosed, method);
}
internal static String InvalidOpStreamNonWritable(String method)
{
return Res.GetString(Res.SqlMisc_InvalidOpStreamNonWritable, method);
}
internal static String InvalidOpStreamNonReadable(String method)
{
return Res.GetString(Res.SqlMisc_InvalidOpStreamNonReadable, method);
}
internal static String InvalidOpStreamNonSeekable(String method)
{
return Res.GetString(Res.SqlMisc_InvalidOpStreamNonSeekable, method);
}
} // SqlResource
} // namespace System
// 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
- PopOutPanel.cs
- TableLayoutPanel.cs
- StreamInfo.cs
- RunWorkerCompletedEventArgs.cs
- ItemList.cs
- CodeVariableDeclarationStatement.cs
- URLString.cs
- Point4DValueSerializer.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- SocketInformation.cs
- DisposableCollectionWrapper.cs
- HiddenFieldPageStatePersister.cs
- PerformanceCounterNameAttribute.cs
- PrivateFontCollection.cs
- SessionStateItemCollection.cs
- BamlResourceContent.cs
- MsmqBindingBase.cs
- NamespaceEmitter.cs
- UnmanagedMemoryStreamWrapper.cs
- ClientBuildManager.cs
- ObjectDataSourceWizardForm.cs
- HtmlInputImage.cs
- SafeThemeHandle.cs
- DataGridViewTopRowAccessibleObject.cs
- IEnumerable.cs
- ReturnType.cs
- CodeBlockBuilder.cs
- FactoryMaker.cs
- unsafenativemethodsother.cs
- MetadataHelper.cs
- ConversionContext.cs
- ArrayHelper.cs
- PhoneCallDesigner.cs
- ListViewItemSelectionChangedEvent.cs
- LogSwitch.cs
- SystemException.cs
- UdpTransportBindingElement.cs
- InputBindingCollection.cs
- RequestQueryParser.cs
- DeviceSpecificChoice.cs
- SerializationException.cs
- RMPublishingDialog.cs
- ViewUtilities.cs
- SingleObjectCollection.cs
- RegexRunnerFactory.cs
- ModuleElement.cs
- Msmq3PoisonHandler.cs
- HtmlInputReset.cs
- InplaceBitmapMetadataWriter.cs
- Selection.cs
- XmlQueryCardinality.cs
- ComPlusContractBehavior.cs
- DbConnectionPool.cs
- MetadataItemCollectionFactory.cs
- GridViewSortEventArgs.cs
- ViewBox.cs
- ItemCollectionEditor.cs
- ValidateNames.cs
- ContentDisposition.cs
- UserValidatedEventArgs.cs
- MeasureItemEvent.cs
- TextParagraphProperties.cs
- XmlAnyElementAttributes.cs
- ManipulationCompletedEventArgs.cs
- TagPrefixAttribute.cs
- InternalControlCollection.cs
- Directory.cs
- XmlSchemaComplexType.cs
- ServiceInfoCollection.cs
- FormatSelectingMessageInspector.cs
- MemberRelationshipService.cs
- PerfService.cs
- FileEnumerator.cs
- PrivateFontCollection.cs
- ModelTypeConverter.cs
- AsyncDataRequest.cs
- ServiceNameElement.cs
- TextTrailingCharacterEllipsis.cs
- MessagePropertyVariants.cs
- ProcessHostConfigUtils.cs
- TypeUtils.cs
- SimpleMailWebEventProvider.cs
- DataGridViewCellStyleConverter.cs
- DocumentViewerConstants.cs
- MustUnderstandBehavior.cs
- PropertyChangingEventArgs.cs
- _ListenerResponseStream.cs
- BooleanKeyFrameCollection.cs
- XmlWhitespace.cs
- ProfileGroupSettingsCollection.cs
- QilGeneratorEnv.cs
- DrawingContextWalker.cs
- AudioStateChangedEventArgs.cs
- PerfService.cs
- ModifierKeysValueSerializer.cs
- ElementsClipboardData.cs
- ValueSerializerAttribute.cs
- PropertyInfo.cs
- mda.cs
- BitConverter.cs