Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Data / System / Data / Common / DBConnection.cs / 1 / DBConnection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data.Common { using System; using System.ComponentModel; using System.Data; #if WINFSInternalOnly internal #else public #endif abstract class DbConnection : Component, IDbConnection { // V1.2.3300 private StateChangeEventHandler _stateChangeEventHandler; protected DbConnection() : base() { } [ DefaultValue(""), RecommendedAsConfigurable(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; #if WINFSInternalOnly internal #else public #endif abstract class DbConnection : Component, IDbConnection { // V1.2.3300 private StateChangeEventHandler _stateChangeEventHandler; protected DbConnection() : base() { } [ DefaultValue(""), RecommendedAsConfigurable(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
- ExceptionUtil.cs
- TabPanel.cs
- MetadataSerializer.cs
- SafeNativeMethodsOther.cs
- QilCloneVisitor.cs
- CalendarAutomationPeer.cs
- FaultHandlingFilter.cs
- GridViewEditEventArgs.cs
- ADMembershipProvider.cs
- DataGridColumnCollection.cs
- CharacterHit.cs
- ObjectStorage.cs
- CalendarDay.cs
- KnownTypeHelper.cs
- QilStrConcatenator.cs
- ConfigurationValidatorBase.cs
- HttpException.cs
- XmlUTF8TextReader.cs
- IteratorFilter.cs
- ConsoleKeyInfo.cs
- GenericTextProperties.cs
- EncodingTable.cs
- HwndMouseInputProvider.cs
- FixedTextBuilder.cs
- HostSecurityManager.cs
- SafeLibraryHandle.cs
- ScopeCompiler.cs
- SafeLocalAllocation.cs
- WebHttpElement.cs
- WindowsFont.cs
- TcpServerChannel.cs
- DataSourceBooleanViewSchemaConverter.cs
- MarginsConverter.cs
- TreeViewImageGenerator.cs
- ProviderUtil.cs
- ResourcePropertyMemberCodeDomSerializer.cs
- TdsValueSetter.cs
- Decoder.cs
- TypeElement.cs
- SelectionPattern.cs
- DirectoryObjectSecurity.cs
- CellConstant.cs
- TreeChangeInfo.cs
- XmlSchema.cs
- XmlWrappingWriter.cs
- MonitoringDescriptionAttribute.cs
- Int32CAMarshaler.cs
- ListSourceHelper.cs
- DbConnectionPoolCounters.cs
- MetadataItemEmitter.cs
- Label.cs
- WebBrowserEvent.cs
- DataTableReaderListener.cs
- CriticalHandle.cs
- DependencyPropertyKey.cs
- ActivityTypeCodeDomSerializer.cs
- datacache.cs
- DocumentXmlWriter.cs
- ProcessInfo.cs
- DataGridViewComponentPropertyGridSite.cs
- ButtonFieldBase.cs
- ConnectionInterfaceCollection.cs
- Color.cs
- HtmlTableRowCollection.cs
- StylusPointPropertyId.cs
- RegistryKey.cs
- Calendar.cs
- DefaultValueAttribute.cs
- PreservationFileWriter.cs
- GeneralTransform.cs
- PasswordBoxAutomationPeer.cs
- EventSetter.cs
- TextPenaltyModule.cs
- DataControlImageButton.cs
- Activity.cs
- Rect.cs
- StreamWithDictionary.cs
- BamlLocalizableResource.cs
- FrameSecurityDescriptor.cs
- ToolStripItemTextRenderEventArgs.cs
- StylusEventArgs.cs
- Lasso.cs
- TdsParserStateObject.cs
- EntityDataSourceContainerNameConverter.cs
- EntityException.cs
- DbConnectionPool.cs
- GuidConverter.cs
- PropertyInformation.cs
- sqlpipe.cs
- Types.cs
- WebConfigurationHost.cs
- XmlAttributeOverrides.cs
- DataBinding.cs
- QueryExpr.cs
- StylusPointPropertyUnit.cs
- NetMsmqSecurity.cs
- SpeakCompletedEventArgs.cs
- SubclassTypeValidator.cs
- TraceSwitch.cs
- ExtendedPropertyInfo.cs