Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Data / System / Data / Odbc / OdbcConnectionPoolProviderInfo.cs / 1 / OdbcConnectionPoolProviderInfo.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data.Odbc { using System; using System.Data; using System.Data.ProviderBase; sealed internal class OdbcConnectionPoolGroupProviderInfo : DbConnectionPoolGroupProviderInfo { private string _driverName; private string _driverVersion; private string _quoteChar; private char _escapeChar; private bool _hasQuoteChar; private bool _hasEscapeChar; private bool _isV3Driver; private int _supportedSQLTypes; private int _testedSQLTypes; private int _restrictedSQLBindTypes; // These, otherwise supported types, are not available for binding // flags for unsupported Attributes private bool _noCurrentCatalog; private bool _noConnectionDead; private bool _noQueryTimeout; private bool _noSqlSoptSSNoBrowseTable; private bool _noSqlSoptSSHiddenColumns; // SSS_WARNINGS_OFF private bool _noSqlCASSColumnKey; // SSS_WARNINGS_ON // flags for unsupported Functions private bool _noSqlPrimaryKeys; internal string DriverName { get { return _driverName; } set { _driverName = value; } } internal string DriverVersion { get { return _driverVersion; } set { _driverVersion = value; } } internal bool HasQuoteChar { // the value is set together with the QuoteChar (see set_QuoteChar); get { return _hasQuoteChar; } } internal bool HasEscapeChar { // the value is set together with the EscapeChar (see set_EscapeChar); get { return _hasEscapeChar; } } internal string QuoteChar { get { return _quoteChar; } set { _quoteChar = value; _hasQuoteChar = true; } } internal char EscapeChar { get { return _escapeChar; } set { _escapeChar = value; _hasEscapeChar = true; } } internal bool IsV3Driver { get { return _isV3Driver; } set { _isV3Driver = value; } } internal int SupportedSQLTypes { get { return _supportedSQLTypes; } set { _supportedSQLTypes = value; } } internal int TestedSQLTypes { get { return _testedSQLTypes; } set { _testedSQLTypes = value; } } internal int RestrictedSQLBindTypes { get { return _restrictedSQLBindTypes; } set { _restrictedSQLBindTypes = value; } } internal bool NoCurrentCatalog { get { return _noCurrentCatalog; } set { _noCurrentCatalog = value; } } internal bool NoConnectionDead { get { return _noConnectionDead; } set { _noConnectionDead = value; } } internal bool NoQueryTimeout { get { return _noQueryTimeout; } set { _noQueryTimeout = value; } } internal bool NoSqlSoptSSNoBrowseTable { get { return _noSqlSoptSSNoBrowseTable; } set { _noSqlSoptSSNoBrowseTable = value; } } internal bool NoSqlSoptSSHiddenColumns { get { return _noSqlSoptSSHiddenColumns; } set { _noSqlSoptSSHiddenColumns = value; } } // SSS_WARNINGS_OFF internal bool NoSqlCASSColumnKey { get { return _noSqlCASSColumnKey; } set { _noSqlCASSColumnKey = value; } } // SSS_WARNINGS_ON internal bool NoSqlPrimaryKeys { get { return _noSqlPrimaryKeys; } set { _noSqlPrimaryKeys = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data.Odbc { using System; using System.Data; using System.Data.ProviderBase; sealed internal class OdbcConnectionPoolGroupProviderInfo : DbConnectionPoolGroupProviderInfo { private string _driverName; private string _driverVersion; private string _quoteChar; private char _escapeChar; private bool _hasQuoteChar; private bool _hasEscapeChar; private bool _isV3Driver; private int _supportedSQLTypes; private int _testedSQLTypes; private int _restrictedSQLBindTypes; // These, otherwise supported types, are not available for binding // flags for unsupported Attributes private bool _noCurrentCatalog; private bool _noConnectionDead; private bool _noQueryTimeout; private bool _noSqlSoptSSNoBrowseTable; private bool _noSqlSoptSSHiddenColumns; // SSS_WARNINGS_OFF private bool _noSqlCASSColumnKey; // SSS_WARNINGS_ON // flags for unsupported Functions private bool _noSqlPrimaryKeys; internal string DriverName { get { return _driverName; } set { _driverName = value; } } internal string DriverVersion { get { return _driverVersion; } set { _driverVersion = value; } } internal bool HasQuoteChar { // the value is set together with the QuoteChar (see set_QuoteChar); get { return _hasQuoteChar; } } internal bool HasEscapeChar { // the value is set together with the EscapeChar (see set_EscapeChar); get { return _hasEscapeChar; } } internal string QuoteChar { get { return _quoteChar; } set { _quoteChar = value; _hasQuoteChar = true; } } internal char EscapeChar { get { return _escapeChar; } set { _escapeChar = value; _hasEscapeChar = true; } } internal bool IsV3Driver { get { return _isV3Driver; } set { _isV3Driver = value; } } internal int SupportedSQLTypes { get { return _supportedSQLTypes; } set { _supportedSQLTypes = value; } } internal int TestedSQLTypes { get { return _testedSQLTypes; } set { _testedSQLTypes = value; } } internal int RestrictedSQLBindTypes { get { return _restrictedSQLBindTypes; } set { _restrictedSQLBindTypes = value; } } internal bool NoCurrentCatalog { get { return _noCurrentCatalog; } set { _noCurrentCatalog = value; } } internal bool NoConnectionDead { get { return _noConnectionDead; } set { _noConnectionDead = value; } } internal bool NoQueryTimeout { get { return _noQueryTimeout; } set { _noQueryTimeout = value; } } internal bool NoSqlSoptSSNoBrowseTable { get { return _noSqlSoptSSNoBrowseTable; } set { _noSqlSoptSSNoBrowseTable = value; } } internal bool NoSqlSoptSSHiddenColumns { get { return _noSqlSoptSSHiddenColumns; } set { _noSqlSoptSSHiddenColumns = value; } } // SSS_WARNINGS_OFF internal bool NoSqlCASSColumnKey { get { return _noSqlCASSColumnKey; } set { _noSqlCASSColumnKey = value; } } // SSS_WARNINGS_ON internal bool NoSqlPrimaryKeys { get { return _noSqlPrimaryKeys; } set { _noSqlPrimaryKeys = value; } } } } // 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
- DelimitedListTraceListener.cs
- DecimalStorage.cs
- ResourcePermissionBase.cs
- PagesChangedEventArgs.cs
- CodeDefaultValueExpression.cs
- AttributeCallbackBuilder.cs
- SimpleRecyclingCache.cs
- MediaTimeline.cs
- DataTablePropertyDescriptor.cs
- PopupControlService.cs
- MethodCallConverter.cs
- TextDecoration.cs
- GridViewSelectEventArgs.cs
- validation.cs
- UiaCoreTypesApi.cs
- PerformanceCounterPermissionEntry.cs
- TextRangeAdaptor.cs
- StringValidatorAttribute.cs
- MobilePage.cs
- SoundPlayerAction.cs
- StateWorkerRequest.cs
- HTMLTagNameToTypeMapper.cs
- Filter.cs
- _IPv6Address.cs
- SmtpException.cs
- AuthenticationSection.cs
- DataTemplateKey.cs
- XamlStackWriter.cs
- PropertySegmentSerializer.cs
- CompositeFontFamily.cs
- ControlDesignerState.cs
- XmlDownloadManager.cs
- MessageFault.cs
- XamlBuildTaskServices.cs
- ErrorProvider.cs
- SuppressIldasmAttribute.cs
- CompilerScope.cs
- SystemUdpStatistics.cs
- PartialTrustVisibleAssembly.cs
- HtmlTableRowCollection.cs
- Menu.cs
- SafeThemeHandle.cs
- XPathNodeList.cs
- FixedSOMPage.cs
- ItemCheckEvent.cs
- DataKey.cs
- ProcessProtocolHandler.cs
- TypeListConverter.cs
- DefaultTypeArgumentAttribute.cs
- DataException.cs
- AssemblyName.cs
- HwndAppCommandInputProvider.cs
- XDRSchema.cs
- SessionSwitchEventArgs.cs
- X509CertificateEndpointIdentity.cs
- ImageClickEventArgs.cs
- EntityDataSourceConfigureObjectContext.cs
- ReadOnlyDictionary.cs
- BitmapCodecInfoInternal.cs
- IncrementalReadDecoders.cs
- UnknownBitmapDecoder.cs
- FtpWebResponse.cs
- ControlEvent.cs
- EventToken.cs
- AliasedSlot.cs
- Point3DValueSerializer.cs
- TextRunCacheImp.cs
- WebServicesInteroperability.cs
- ParameterBuilder.cs
- QilDataSource.cs
- ObjectCacheSettings.cs
- RichListBox.cs
- OpacityConverter.cs
- LassoSelectionBehavior.cs
- SelectorAutomationPeer.cs
- RotateTransform3D.cs
- Rect3DValueSerializer.cs
- documentsequencetextpointer.cs
- fixedPageContentExtractor.cs
- FreezableOperations.cs
- ProfileSettings.cs
- BreakRecordTable.cs
- DefaultEvaluationContext.cs
- ReadWriteSpinLock.cs
- CompositeDataBoundControl.cs
- MD5.cs
- XmlNodeReader.cs
- EventWaitHandle.cs
- DatePicker.cs
- VirtualDirectoryMapping.cs
- XmlCollation.cs
- SessionStateContainer.cs
- IDispatchConstantAttribute.cs
- UnsafeNativeMethods.cs
- CngAlgorithm.cs
- StaticTextPointer.cs
- securitycriticaldata.cs
- BindingsCollection.cs
- CachedPathData.cs
- PriorityQueue.cs