Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Data / System / Data / Common / DbDataReader.cs / 1 / DbDataReader.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data.Common { using System; using System.Collections; using System.ComponentModel; using System.Data; #if WINFSInternalOnly internal #else public #endif abstract class DbDataReader : MarshalByRefObject, IDataReader, IEnumerable { // V1.2.3300 protected DbDataReader() : base() { } abstract public int Depth { get; } abstract public int FieldCount { get; } abstract public bool HasRows { get; } abstract public bool IsClosed { get; } abstract public int RecordsAffected { get; } virtual public int VisibleFieldCount { // NOTE: This is virtual because not all providers may choose to support // this property, since it was added in Whidbey get { return FieldCount; } } abstract public object this [ int ordinal ] { get; } abstract public object this [ string name ] { get; } abstract public void Close(); [ EditorBrowsableAttribute(EditorBrowsableState.Never) ] public void Dispose() { Dispose(true); } protected virtual void Dispose(bool disposing) { if (disposing) { Close(); } } abstract public string GetDataTypeName(int ordinal); [ EditorBrowsableAttribute(EditorBrowsableState.Never) ] abstract public IEnumerator GetEnumerator(); abstract public Type GetFieldType(int ordinal); abstract public string GetName(int ordinal); abstract public int GetOrdinal(string name); abstract public DataTable GetSchemaTable(); abstract public bool GetBoolean(int ordinal); abstract public byte GetByte(int ordinal); abstract public long GetBytes(int ordinal, long dataOffset, byte[] buffer, int bufferOffset, int length); abstract public char GetChar(int ordinal); abstract public long GetChars(int ordinal, long dataOffset, char[] buffer, int bufferOffset, int length); [ EditorBrowsableAttribute(EditorBrowsableState.Never) ] public DbDataReader GetData(int ordinal) { return GetDbDataReader(ordinal); } IDataReader IDataRecord.GetData(int ordinal) { return GetDbDataReader(ordinal); } virtual protected DbDataReader GetDbDataReader(int ordinal) { // NOTE: This method is virtual because we're required to implement // it however most providers won't support it. Only the OLE DB // provider supports it right now, and they can override it. throw ADP.NotSupported(); } abstract public DateTime GetDateTime(int ordinal); abstract public Decimal GetDecimal(int ordinal); abstract public double GetDouble(int ordinal); abstract public float GetFloat(int ordinal); abstract public Guid GetGuid(int ordinal); abstract public Int16 GetInt16(int ordinal); abstract public Int32 GetInt32(int ordinal); abstract public Int64 GetInt64(int ordinal); [ EditorBrowsableAttribute(EditorBrowsableState.Never) ] virtual public Type GetProviderSpecificFieldType(int ordinal) { // NOTE: This is virtual because not all providers may choose to support // this method, since it was added in Whidbey. return GetFieldType(ordinal); } [ EditorBrowsableAttribute(EditorBrowsableState.Never) ] virtual public Object GetProviderSpecificValue(int ordinal) { // NOTE: This is virtual because not all providers may choose to support // this method, since it was added in Whidbey return GetValue(ordinal); } [ EditorBrowsableAttribute(EditorBrowsableState.Never) ] virtual public int GetProviderSpecificValues(object[] values) { // NOTE: This is virtual because not all providers may choose to support // this method, since it was added in Whidbey return GetValues(values); } abstract public String GetString(int ordinal); abstract public Object GetValue(int ordinal); abstract public int GetValues(object[] values); abstract public bool IsDBNull(int ordinal); abstract public bool NextResult(); abstract public bool Read(); } } // 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
- Debug.cs
- ViewStateException.cs
- RegexCapture.cs
- ParameterCollectionEditorForm.cs
- TextTabProperties.cs
- CustomCredentialPolicy.cs
- SqlTypeConverter.cs
- XmlDataSourceView.cs
- Parameter.cs
- EntityWithKeyStrategy.cs
- SecurityAccessDeniedException.cs
- SystemWebSectionGroup.cs
- TypefaceMetricsCache.cs
- BooleanFacetDescriptionElement.cs
- ProfileGroupSettingsCollection.cs
- SBCSCodePageEncoding.cs
- LinearKeyFrames.cs
- ObjectConverter.cs
- RSAPKCS1SignatureFormatter.cs
- Rotation3DAnimationBase.cs
- HiddenField.cs
- MsmqAppDomainProtocolHandler.cs
- CriticalFinalizerObject.cs
- UrlAuthorizationModule.cs
- BaseTreeIterator.cs
- BindToObject.cs
- Types.cs
- WsatExtendedInformation.cs
- HexParser.cs
- DocumentOrderComparer.cs
- ProxyFragment.cs
- HostingEnvironment.cs
- SafeSecurityHandles.cs
- DesignerForm.cs
- ColorAnimationUsingKeyFrames.cs
- ValidationPropertyAttribute.cs
- XmlValidatingReaderImpl.cs
- ColorConverter.cs
- MessageSmuggler.cs
- TableCell.cs
- GatewayDefinition.cs
- NameValueSectionHandler.cs
- MappingException.cs
- ResumeStoryboard.cs
- CryptoHandle.cs
- MimeReflector.cs
- MetadataItemSerializer.cs
- HMAC.cs
- ObjectListFieldsPage.cs
- DetailsViewInsertedEventArgs.cs
- RecordsAffectedEventArgs.cs
- X509Certificate.cs
- ChtmlTextWriter.cs
- DeviceContexts.cs
- MsmqProcessProtocolHandler.cs
- ZipIOExtraFieldElement.cs
- ResolveNameEventArgs.cs
- ContentDisposition.cs
- TraceListener.cs
- LineSegment.cs
- TextEvent.cs
- TraceEventCache.cs
- SafeMILHandle.cs
- XmlDocumentType.cs
- PositiveTimeSpanValidator.cs
- DataTableMappingCollection.cs
- EditorZoneDesigner.cs
- MethodBuilderInstantiation.cs
- ReadOnlyCollectionBase.cs
- dbenumerator.cs
- _ListenerResponseStream.cs
- FormParameter.cs
- ResourceWriter.cs
- GPStream.cs
- ProfileServiceManager.cs
- NonBatchDirectoryCompiler.cs
- ResourcePermissionBaseEntry.cs
- BindingExpressionBase.cs
- InputScopeManager.cs
- DataSourceBooleanViewSchemaConverter.cs
- FlowThrottle.cs
- ScrollProviderWrapper.cs
- DocumentSequenceHighlightLayer.cs
- TransformDescriptor.cs
- StopRoutingHandler.cs
- StorageEndPropertyMapping.cs
- _SslSessionsCache.cs
- ToolStripComboBox.cs
- RC2CryptoServiceProvider.cs
- FilterQueryOptionExpression.cs
- TabControlCancelEvent.cs
- LogSwitch.cs
- HashMembershipCondition.cs
- XamlUtilities.cs
- DiscoveryEndpointElement.cs
- ScriptRef.cs
- ContentDesigner.cs
- ListViewItem.cs
- RSAOAEPKeyExchangeDeformatter.cs
- SqlAggregateChecker.cs