Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Data / Microsoft / SqlServer / Server / SmiContext.cs / 1 / SmiContext.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- namespace Microsoft.SqlServer.Server { using System; using System.Data; using System.Data.Sql; using System.Data.SqlTypes; using System.Security.Principal; // NOTE: connection, transaction and context pipe operations could be // encapsulated in their own classes, and should if they get complex // (transaction is borderline at this point). internal abstract class SmiContext { internal abstract event EventHandler OutOfScope; internal abstract SmiConnection ContextConnection { get; } internal abstract long ContextTransactionId { get; } internal abstract System.Transactions.Transaction ContextTransaction { get; } internal abstract bool HasContextPipe { get; } internal abstract WindowsIdentity WindowsIdentity { get; } internal abstract SmiRecordBuffer CreateRecordBuffer ( SmiExtendedMetaData[] columnMetaData, // Extended metadata because it requires names, udttypename and xmlschemaname ignored SmiEventSink eventSink ); internal abstract SmiRequestExecutor CreateRequestExecutor ( string commandText, CommandType commandType, SmiParameterMetaData[] parameterMetaData, SmiEventSink eventSink ); // internal abstract object GetContextValue ( int key ); internal abstract void GetTriggerInfo ( SmiEventSink eventSink, out bool[] columnsUpdated, out TriggerAction action, out SqlXml eventInstanceData ); internal abstract void SendMessageToPipe( string message, SmiEventSink eventSink ); internal abstract void SendResultsStartToPipe( SmiRecordBuffer recordBuffer, SmiEventSink eventSink ); internal abstract void SendResultsRowToPipe( SmiRecordBuffer recordBuffer, SmiEventSink eventSink ); internal abstract void SendResultsEndToPipe( SmiRecordBuffer recordBuffer, SmiEventSink eventSink ); internal abstract void SetContextValue ( int key, object value ); // Scratch LOB storage region internal virtual SmiStream GetScratchStream( SmiEventSink sink ) { // Adding as of V3 // Implement body with throw because there are only a couple of ways to get to this code: // 1) Client is calling this method even though the server negotiated for V2- and hasn't implemented V3 yet. // 2) Server didn't implement V3, but negotiated V3+. System.Data.Common.ADP.InternalError( System.Data.Common.ADP.InternalErrorCode.UnimplementedSMIMethod ); return null; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ListMarkerSourceInfo.cs
- InternalUserCancelledException.cs
- AdornerPresentationContext.cs
- RetrieveVirtualItemEventArgs.cs
- PackagePartCollection.cs
- BitArray.cs
- Compiler.cs
- PersonalizationState.cs
- ExecutedRoutedEventArgs.cs
- ProjectionCamera.cs
- FlowDocumentView.cs
- IdentityNotMappedException.cs
- LayoutEditorPart.cs
- SimpleApplicationHost.cs
- PrivateFontCollection.cs
- HashCodeCombiner.cs
- PlatformNotSupportedException.cs
- FormViewAutoFormat.cs
- DataServiceQueryException.cs
- PartitionedStreamMerger.cs
- ClientUtils.cs
- Expressions.cs
- COM2FontConverter.cs
- ProfileGroupSettings.cs
- DataGridViewCellMouseEventArgs.cs
- _ConnectStream.cs
- AllMembershipCondition.cs
- ClientScriptManager.cs
- StorageComplexTypeMapping.cs
- BindingGroup.cs
- ContentType.cs
- DropShadowEffect.cs
- SystemUnicastIPAddressInformation.cs
- EpmCustomContentDeSerializer.cs
- BaseDataListPage.cs
- XPathNodeList.cs
- ConfigXmlAttribute.cs
- ProfileSection.cs
- SoapConverter.cs
- EntityStoreSchemaFilterEntry.cs
- ZoneButton.cs
- RootBuilder.cs
- Line.cs
- MetadataArtifactLoaderResource.cs
- OdbcHandle.cs
- ThemeDirectoryCompiler.cs
- NumericExpr.cs
- SystemNetworkInterface.cs
- ButtonChrome.cs
- SecurityPolicyVersion.cs
- WindowsTreeView.cs
- WindowsImpersonationContext.cs
- SchemaConstraints.cs
- XmlSerializer.cs
- DispatcherOperation.cs
- XmlSortKeyAccumulator.cs
- WsdlBuildProvider.cs
- XamlGridLengthSerializer.cs
- EditorZone.cs
- TableItemPattern.cs
- DashStyle.cs
- DataGridViewRowsRemovedEventArgs.cs
- DatagridviewDisplayedBandsData.cs
- StickyNote.cs
- PrintEvent.cs
- ErrorsHelper.cs
- WaitHandle.cs
- File.cs
- SystemColorTracker.cs
- ButtonFlatAdapter.cs
- Storyboard.cs
- EditorPartChrome.cs
- InvalidOperationException.cs
- DataPagerField.cs
- WebPartConnectionsCancelEventArgs.cs
- AsyncCompletedEventArgs.cs
- WebConfigurationHostFileChange.cs
- FigureParaClient.cs
- BindingContext.cs
- WebServiceErrorEvent.cs
- VectorConverter.cs
- GridItem.cs
- CompositeDataBoundControl.cs
- CombinedTcpChannel.cs
- TdsParserSessionPool.cs
- HttpVersion.cs
- AsymmetricSecurityProtocolFactory.cs
- BuildManager.cs
- ObfuscationAttribute.cs
- AggregatePushdown.cs
- TypeDelegator.cs
- Route.cs
- DbParameterCollection.cs
- SqlMethodCallConverter.cs
- XmlSchemaValidationException.cs
- FileLevelControlBuilderAttribute.cs
- AuthorizationRuleCollection.cs
- ApplicationHost.cs
- Comparer.cs
- CardSpaceException.cs