Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Data / System / Data / Common / DBConnection.cs / 1305376 / DBConnection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data.Common { using System; using System.ComponentModel; using System.Data; public abstract class DbConnection : Component, IDbConnection { // V1.2.3300 private StateChangeEventHandler _stateChangeEventHandler; protected DbConnection() : base() { } [ DefaultValue(""), #pragma warning disable 618 // ignore obsolete warning about RecommendedAsConfigurable to use SettingsBindableAttribute RecommendedAsConfigurable(true), #pragma warning restore 618 SettingsBindableAttribute(true), RefreshProperties(RefreshProperties.All), ResCategoryAttribute(Res.DataCategory_Data), ] abstract public string ConnectionString { get; set; } [ ResCategoryAttribute(Res.DataCategory_Data), ] virtual public int ConnectionTimeout { get { return ADP.DefaultConnectionTimeout; } } [ ResCategoryAttribute(Res.DataCategory_Data), ] abstract public string Database { get; } [ ResCategoryAttribute(Res.DataCategory_Data), ] abstract public string DataSource { // NOTE: if you plan on allowing the data source to be changed, you // should implement a ChangeDataSource method, in keeping with // the ChangeDatabase method paradigm. get; } ////// The associated provider factory for derived class. /// virtual protected DbProviderFactory DbProviderFactory { get { return null; } } internal DbProviderFactory ProviderFactory { get { return DbProviderFactory; } } [ Browsable(false), ] abstract public string ServerVersion { get; } [ Browsable(false), ResDescriptionAttribute(Res.DbConnection_State), ] abstract public ConnectionState State { get; } [ ResCategoryAttribute(Res.DataCategory_StateChange), ResDescriptionAttribute(Res.DbConnection_StateChange), ] virtual public event StateChangeEventHandler StateChange { add { _stateChangeEventHandler += value; } remove { _stateChangeEventHandler -= value; } } abstract protected DbTransaction BeginDbTransaction(IsolationLevel isolationLevel); public DbTransaction BeginTransaction() { return BeginDbTransaction(IsolationLevel.Unspecified); } public DbTransaction BeginTransaction(IsolationLevel isolationLevel) { return BeginDbTransaction(isolationLevel); } IDbTransaction IDbConnection.BeginTransaction() { return BeginDbTransaction(IsolationLevel.Unspecified); } IDbTransaction IDbConnection.BeginTransaction(IsolationLevel isolationLevel) { return BeginDbTransaction(isolationLevel); } abstract public void Close(); abstract public void ChangeDatabase(string databaseName); public DbCommand CreateCommand() { return CreateDbCommand(); } IDbCommand IDbConnection.CreateCommand() { return CreateDbCommand(); } abstract protected DbCommand CreateDbCommand(); virtual public void EnlistTransaction(System.Transactions.Transaction transaction) { // NOTE: This is virtual because not all providers may choose to support // distributed transactions. throw ADP.NotSupported(); } // these need to be here so that GetSchema is visible when programming to a dbConnection object. // they are overridden by the real implementations in DbConnectionBase virtual public DataTable GetSchema() { throw ADP.NotSupported(); } virtual public DataTable GetSchema(string collectionName) { throw ADP.NotSupported(); } virtual public DataTable GetSchema(string collectionName, string[] restrictionValues ) { throw ADP.NotSupported(); } protected virtual void OnStateChange(StateChangeEventArgs stateChange) { StateChangeEventHandler handler = _stateChangeEventHandler; if (null != handler) { handler(this, stateChange); } } abstract public void Open(); } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data.Common { using System; using System.ComponentModel; using System.Data; public abstract class DbConnection : Component, IDbConnection { // V1.2.3300 private StateChangeEventHandler _stateChangeEventHandler; protected DbConnection() : base() { } [ DefaultValue(""), #pragma warning disable 618 // ignore obsolete warning about RecommendedAsConfigurable to use SettingsBindableAttribute RecommendedAsConfigurable(true), #pragma warning restore 618 SettingsBindableAttribute(true), RefreshProperties(RefreshProperties.All), ResCategoryAttribute(Res.DataCategory_Data), ] abstract public string ConnectionString { get; set; } [ ResCategoryAttribute(Res.DataCategory_Data), ] virtual public int ConnectionTimeout { get { return ADP.DefaultConnectionTimeout; } } [ ResCategoryAttribute(Res.DataCategory_Data), ] abstract public string Database { get; } [ ResCategoryAttribute(Res.DataCategory_Data), ] abstract public string DataSource { // NOTE: if you plan on allowing the data source to be changed, you // should implement a ChangeDataSource method, in keeping with // the ChangeDatabase method paradigm. get; } ////// The associated provider factory for derived class. /// virtual protected DbProviderFactory DbProviderFactory { get { return null; } } internal DbProviderFactory ProviderFactory { get { return DbProviderFactory; } } [ Browsable(false), ] abstract public string ServerVersion { get; } [ Browsable(false), ResDescriptionAttribute(Res.DbConnection_State), ] abstract public ConnectionState State { get; } [ ResCategoryAttribute(Res.DataCategory_StateChange), ResDescriptionAttribute(Res.DbConnection_StateChange), ] virtual public event StateChangeEventHandler StateChange { add { _stateChangeEventHandler += value; } remove { _stateChangeEventHandler -= value; } } abstract protected DbTransaction BeginDbTransaction(IsolationLevel isolationLevel); public DbTransaction BeginTransaction() { return BeginDbTransaction(IsolationLevel.Unspecified); } public DbTransaction BeginTransaction(IsolationLevel isolationLevel) { return BeginDbTransaction(isolationLevel); } IDbTransaction IDbConnection.BeginTransaction() { return BeginDbTransaction(IsolationLevel.Unspecified); } IDbTransaction IDbConnection.BeginTransaction(IsolationLevel isolationLevel) { return BeginDbTransaction(isolationLevel); } abstract public void Close(); abstract public void ChangeDatabase(string databaseName); public DbCommand CreateCommand() { return CreateDbCommand(); } IDbCommand IDbConnection.CreateCommand() { return CreateDbCommand(); } abstract protected DbCommand CreateDbCommand(); virtual public void EnlistTransaction(System.Transactions.Transaction transaction) { // NOTE: This is virtual because not all providers may choose to support // distributed transactions. throw ADP.NotSupported(); } // these need to be here so that GetSchema is visible when programming to a dbConnection object. // they are overridden by the real implementations in DbConnectionBase virtual public DataTable GetSchema() { throw ADP.NotSupported(); } virtual public DataTable GetSchema(string collectionName) { throw ADP.NotSupported(); } virtual public DataTable GetSchema(string collectionName, string[] restrictionValues ) { throw ADP.NotSupported(); } protected virtual void OnStateChange(StateChangeEventArgs stateChange) { StateChangeEventHandler handler = _stateChangeEventHandler; if (null != handler) { handler(this, stateChange); } } abstract public void Open(); } } // 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
- BulletChrome.cs
- WebScriptClientGenerator.cs
- connectionpool.cs
- EntityViewContainer.cs
- ExeContext.cs
- DictionaryBase.cs
- EntityPropertyMappingAttribute.cs
- MonthChangedEventArgs.cs
- TaskHelper.cs
- CardSpaceShim.cs
- PropertyValueChangedEvent.cs
- X509Utils.cs
- StylusPointPropertyInfoDefaults.cs
- AggregateNode.cs
- DependencyObjectCodeDomSerializer.cs
- DaylightTime.cs
- WasHttpModulesInstallComponent.cs
- PasswordDeriveBytes.cs
- DbConnectionHelper.cs
- DiscoveryVersionConverter.cs
- SerializationStore.cs
- PropertyGridCommands.cs
- WebConfigurationManager.cs
- ClickablePoint.cs
- XmlQualifiedNameTest.cs
- FrugalList.cs
- Stylesheet.cs
- SafePEFileHandle.cs
- GenerateScriptTypeAttribute.cs
- UIElementIsland.cs
- EventWaitHandle.cs
- CookieProtection.cs
- WebServiceParameterData.cs
- CompensableActivity.cs
- OutputScope.cs
- TypeDescriptionProvider.cs
- ExceptionUtil.cs
- NetStream.cs
- XmlSerializerAssemblyAttribute.cs
- PropertyKey.cs
- OdbcFactory.cs
- FixedTextContainer.cs
- WebHostScriptMappingsInstallComponent.cs
- HttpServerUtilityBase.cs
- FlagsAttribute.cs
- EntityContainerEntitySet.cs
- EtwTrace.cs
- ToolStripProgressBar.cs
- PolyLineSegment.cs
- ArcSegment.cs
- ControlType.cs
- SmtpNegotiateAuthenticationModule.cs
- DrawingAttributes.cs
- IISUnsafeMethods.cs
- InternalConfigSettingsFactory.cs
- CommandID.cs
- MediaElementAutomationPeer.cs
- SmiEventStream.cs
- Attributes.cs
- IPCCacheManager.cs
- SubclassTypeValidator.cs
- FontWeightConverter.cs
- CallId.cs
- KeyboardNavigation.cs
- ReadContentAsBinaryHelper.cs
- Keywords.cs
- TimeSpanConverter.cs
- SHA512Managed.cs
- IListConverters.cs
- FocusChangedEventArgs.cs
- X509CertificateClaimSet.cs
- XmlSerializationReader.cs
- PropertyValueChangedEvent.cs
- EUCJPEncoding.cs
- TypeResolver.cs
- Type.cs
- EdmProperty.cs
- Application.cs
- DynamicDataExtensions.cs
- LeafCellTreeNode.cs
- RegexMatchCollection.cs
- DiscoveryDocumentLinksPattern.cs
- HebrewCalendar.cs
- UrlAuthFailedErrorFormatter.cs
- WebAdminConfigurationHelper.cs
- Int16Converter.cs
- StringValueSerializer.cs
- StylusPointDescription.cs
- ReflectTypeDescriptionProvider.cs
- OuterGlowBitmapEffect.cs
- ConnectivityStatus.cs
- OutOfMemoryException.cs
- PanelStyle.cs
- SqlPersonalizationProvider.cs
- IResourceProvider.cs
- WorkflowQueueInfo.cs
- UInt32Converter.cs
- ByteStreamGeometryContext.cs
- AutoResizedEvent.cs
- StreamMarshaler.cs