Package system.data.sqlclient
Class SqlDataReader
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.MarshalByRefObject
-
- system.data.common.DbDataReader
-
- system.data.sqlclient.SqlDataReader
-
- All Implemented Interfaces:
java.lang.AutoCloseable,IJCOBridgeReflected
public class SqlDataReader extends DbDataReader
The base .NET class managing System.Data.SqlClient.SqlDataReader, System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Data.SqlClient.SqlDataReader
Powered by JCOBridge: more info at https://www.jcobridge.com
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringassemblyFullNameFully assembly qualified name: System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089static java.lang.StringassemblyShortNameAssembly name: System.Datastatic java.lang.StringclassNameQualified class name: System.Data.SqlClient.SqlDataReaderstatic JCTypeclassTypeThe type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description SqlDataReader()SqlDataReader(java.lang.Object instance)Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SqlDataReadercast(IJCOBridgeReflected from)Try to cast theIJCOBridgeReflectedinstance intoSqlDataReader, a cast assert is made to check if types are compatible.voidClose()booleanGetBoolean(int i)byteGetByte(int i)longGetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length)longGetBytes(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4)charGetChar(int i)longGetChars(int i, long dataIndex, char[] buffer, int bufferIndex, int length)longGetChars(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4)java.lang.StringGetDataTypeName(int i)DateTimeGetDateTime(int i)DateTimeOffsetGetDateTimeOffset(int i)DecimalGetDecimal(int i)doubleGetDouble(int i)NetTypeGetFieldType(int i)SingleGetFloat(int i)GuidGetGuid(int i)shortGetInt16(int i)intGetInt32(int i)longGetInt64(int i)java.lang.StringgetJCOAssemblyName()Returns the reflected Assembly namejava.lang.StringgetJCOClassName()Returns the reflected Class namejava.lang.ObjectgetJCOInstance()Returns the instantiated classjava.lang.StringgetJCOObjectName()Returns the reflected Class name used to build the objectJCTypegetJCOType()Returns the instantiated class Typejava.lang.StringGetName(int i)intGetOrdinal(java.lang.String name)NetTypeGetProviderSpecificFieldType(int i)NetObjectGetProviderSpecificValue(int i)intGetProviderSpecificValues(NetObject[] values)DataTableGetSchemaTable()SqlBinaryGetSqlBinary(int i)SqlBooleanGetSqlBoolean(int i)SqlByteGetSqlByte(int i)SqlBytesGetSqlBytes(int i)SqlCharsGetSqlChars(int i)SqlDateTimeGetSqlDateTime(int i)SqlDecimalGetSqlDecimal(int i)SqlDoubleGetSqlDouble(int i)SqlGuidGetSqlGuid(int i)SqlInt16GetSqlInt16(int i)SqlInt32GetSqlInt32(int i)SqlInt64GetSqlInt64(int i)SqlMoneyGetSqlMoney(int i)SqlSingleGetSqlSingle(int i)SqlStringGetSqlString(int i)NetObjectGetSqlValue(int i)intGetSqlValues(NetObject[] values)SqlXmlGetSqlXml(int i)StreamGetStream(int i)java.lang.StringGetString(int i)TextReaderGetTextReader(int i)TimeSpanGetTimeSpan(int i)NetObjectGetValue(int i)intGetValues(NetObject[] values)XmlReaderGetXmlReader(int i)booleanIsDBNull(int i)booleanNextResult()booleanRead()voidsetJCOInstance(JCObject instance)-
Methods inherited from class system.data.common.DbDataReader
close, Dispose, GetData, getDepth, getFieldCount, getHasRows, getIsClosed, getRecordsAffected, getVisibleFieldCount
-
Methods inherited from class system.MarshalByRefObject
CreateObjRef, GetLifetimeService, InitializeLifetimeService
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Data- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Data.SqlClient.SqlDataReader- See Also:
- Constant Field Values
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Assembly name- Specified by:
getJCOAssemblyNamein interfaceIJCOBridgeReflected- Overrides:
getJCOAssemblyNamein classDbDataReader- Returns:
- A
Stringrepresenting the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name- Specified by:
getJCOClassNamein interfaceIJCOBridgeReflected- Overrides:
getJCOClassNamein classDbDataReader- Returns:
- A
Stringrepresenting the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name used to build the object- Specified by:
getJCOObjectNamein interfaceIJCOBridgeReflected- Overrides:
getJCOObjectNamein classDbDataReader- Returns:
- A
Stringrepresenting the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class- Specified by:
getJCOInstancein interfaceIJCOBridgeReflected- Overrides:
getJCOInstancein classDbDataReader- Returns:
- An
Objectrepresenting the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstancein classDbDataReader
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class Type- Specified by:
getJCOTypein interfaceIJCOBridgeReflected- Overrides:
getJCOTypein classDbDataReader- Returns:
- A
JCTyperepresenting the CLR Type of the instantiated Class
-
cast
public static SqlDataReader cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflectedinstance intoSqlDataReader, a cast assert is made to check if types are compatible.- Parameters:
from-IJCOBridgeReflectedinstance to be casted- Returns:
SqlDataReaderinstance- Throws:
java.lang.Throwable- in case of error during cast operation
-
GetBoolean
public boolean GetBoolean(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, SqlTypeException, XmlException, TargetInvocationException- Overrides:
GetBooleanin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionSqlNullValueExceptionOverflowExceptionSqlTypeExceptionXmlExceptionTargetInvocationException
-
IsDBNull
public boolean IsDBNull(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, FormatException, OverflowException, OutOfMemoryException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SqlException, SqlTypeException, SqlNullValueException, SqlTruncateException, TypeLoadException, AggregateException, NullReferenceException- Overrides:
IsDBNullin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionFormatExceptionOverflowExceptionOutOfMemoryExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSqlExceptionSqlTypeExceptionSqlNullValueExceptionSqlTruncateExceptionTypeLoadExceptionAggregateExceptionNullReferenceException
-
NextResult
public boolean NextResult() throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, AggregateException, NotSupportedException, FormatException, OverflowException, OutOfMemoryException, WaitHandleCannotBeOpenedException, SqlException, SqlTypeException, SqlNullValueException, SqlTruncateException, FileNotFoundException, TypeLoadException, InvalidUdtException- Overrides:
NextResultin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionIndexOutOfRangeExceptionAggregateExceptionNotSupportedExceptionFormatExceptionOverflowExceptionOutOfMemoryExceptionWaitHandleCannotBeOpenedExceptionSqlExceptionSqlTypeExceptionSqlNullValueExceptionSqlTruncateExceptionFileNotFoundExceptionTypeLoadExceptionInvalidUdtException
-
Read
public boolean Read() throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, TaskSchedulerException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SqlException, FormatException, AggregateException, NotSupportedException, OverflowException, OutOfMemoryException, IndexOutOfRangeException, WaitHandleCannotBeOpenedException, SqlTypeException, SqlNullValueException, SqlTruncateException, TypeLoadException, InvalidUdtException- Overrides:
Readin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionTaskSchedulerExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSqlExceptionFormatExceptionAggregateExceptionNotSupportedExceptionOverflowExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionWaitHandleCannotBeOpenedExceptionSqlTypeExceptionSqlNullValueExceptionSqlTruncateExceptionTypeLoadExceptionInvalidUdtException
-
GetByte
public byte GetByte(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, SqlTypeException, XmlException, TargetInvocationException- Overrides:
GetBytein classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionSqlNullValueExceptionOverflowExceptionSqlTypeExceptionXmlExceptionTargetInvocationException
-
GetChar
public char GetChar(int i) throws java.lang.Throwable, NotSupportedException- Overrides:
GetCharin classDbDataReader- Throws:
java.lang.ThrowableNotSupportedException
-
GetDouble
public double GetDouble(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, SqlTypeException, XmlException, TargetInvocationException- Overrides:
GetDoublein classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionSqlNullValueExceptionOverflowExceptionSqlTypeExceptionXmlExceptionTargetInvocationException
-
GetInt16
public short GetInt16(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, SqlTypeException, XmlException, TargetInvocationException- Overrides:
GetInt16in classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionSqlNullValueExceptionOverflowExceptionSqlTypeExceptionXmlExceptionTargetInvocationException
-
GetInt32
public int GetInt32(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, SqlTypeException, XmlException, TargetInvocationException- Overrides:
GetInt32in classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionSqlNullValueExceptionOverflowExceptionSqlTypeExceptionXmlExceptionTargetInvocationException
-
GetOrdinal
public int GetOrdinal(java.lang.String name) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, FormatException, OutOfMemoryException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SqlException, SqlTypeException, SqlNullValueException, SqlTruncateException, TypeLoadException- Overrides:
GetOrdinalin classDbDataReader- Throws:
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentNullExceptionArgumentExceptionOverflowExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionFormatExceptionOutOfMemoryExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSqlExceptionSqlTypeExceptionSqlNullValueExceptionSqlTruncateExceptionTypeLoadException
-
GetProviderSpecificValues
public int GetProviderSpecificValues(NetObject[] values) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, FormatException, IndexOutOfRangeException, SqlNullValueException, OverflowException, NotSupportedException, FileNotFoundException, TypeLoadException, AccessViolationException, InvalidUdtException
- Overrides:
GetProviderSpecificValuesin classDbDataReader- Throws:
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentNullExceptionArgumentExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionFormatExceptionIndexOutOfRangeExceptionSqlNullValueExceptionOverflowExceptionNotSupportedExceptionFileNotFoundExceptionTypeLoadExceptionAccessViolationExceptionInvalidUdtException
-
GetSqlValues
public int GetSqlValues(NetObject[] values) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, XmlException, TargetInvocationException, FormatException, FileNotFoundException, TypeLoadException, AccessViolationException, InvalidUdtException
- Throws:
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentNullExceptionArgumentExceptionOverflowExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionSqlNullValueExceptionXmlExceptionTargetInvocationExceptionFormatExceptionFileNotFoundExceptionTypeLoadExceptionAccessViolationExceptionInvalidUdtException
-
GetValues
public int GetValues(NetObject[] values) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, FormatException, OutOfMemoryException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SqlException, SqlTypeException, SqlNullValueException, SqlTruncateException, TypeLoadException, AggregateException, NullReferenceException
- Overrides:
GetValuesin classDbDataReader- Throws:
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentNullExceptionArgumentExceptionOverflowExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionFormatExceptionOutOfMemoryExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSqlExceptionSqlTypeExceptionSqlNullValueExceptionSqlTruncateExceptionTypeLoadExceptionAggregateExceptionNullReferenceException
-
GetBytes
public long GetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, OverflowException, SqlNullValueException, SqlTypeException, FormatException- Overrides:
GetBytesin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionOverflowExceptionSqlNullValueExceptionSqlTypeExceptionFormatException
-
GetBytes
public long GetBytes(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, OverflowException, SqlNullValueException, SqlTypeException, FormatException- Overrides:
GetBytesin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionOverflowExceptionSqlNullValueExceptionSqlTypeExceptionFormatException
-
GetChars
public long GetChars(int i, long dataIndex, char[] buffer, int bufferIndex, int length) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, FormatException, OverflowException, OutOfMemoryException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SqlException, SqlTypeException, SqlNullValueException, SqlTruncateException, TypeLoadException, TargetInvocationException, XmlException- Overrides:
GetCharsin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionFormatExceptionOverflowExceptionOutOfMemoryExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSqlExceptionSqlTypeExceptionSqlNullValueExceptionSqlTruncateExceptionTypeLoadExceptionTargetInvocationExceptionXmlException
-
GetChars
public long GetChars(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, FormatException, OverflowException, OutOfMemoryException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SqlException, SqlTypeException, SqlNullValueException, SqlTruncateException, TypeLoadException, TargetInvocationException, XmlException- Overrides:
GetCharsin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionFormatExceptionOverflowExceptionOutOfMemoryExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSqlExceptionSqlTypeExceptionSqlNullValueExceptionSqlTruncateExceptionTypeLoadExceptionTargetInvocationExceptionXmlException
-
GetInt64
public long GetInt64(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, SqlTypeException, XmlException, TargetInvocationException- Overrides:
GetInt64in classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionSqlNullValueExceptionOverflowExceptionSqlTypeExceptionXmlExceptionTargetInvocationException
-
GetFloat
public Single GetFloat(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, SqlTypeException, XmlException, TargetInvocationException
- Overrides:
GetFloatin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionSqlNullValueExceptionOverflowExceptionSqlTypeExceptionXmlExceptionTargetInvocationException
-
GetSchemaTable
public DataTable GetSchemaTable() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, FormatException, OutOfMemoryException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SqlException, TaskSchedulerException, SqlTypeException, SqlNullValueException, SqlTruncateException, TypeLoadException, InvalidUdtException, NullReferenceException, ConfigurationErrorsException, DataException, InvalidCastException, KeyNotFoundException
- Overrides:
GetSchemaTablein classDbDataReader- Throws:
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentNullExceptionArgumentExceptionOverflowExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionFormatExceptionOutOfMemoryExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSqlExceptionTaskSchedulerExceptionSqlTypeExceptionSqlNullValueExceptionSqlTruncateExceptionTypeLoadExceptionInvalidUdtExceptionNullReferenceExceptionConfigurationErrorsExceptionDataExceptionInvalidCastExceptionKeyNotFoundException
-
GetSqlBinary
public SqlBinary GetSqlBinary(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionOverflowExceptionSqlTypeExceptionSqlNullValueExceptionXmlExceptionTargetInvocationException
-
GetSqlBoolean
public SqlBoolean GetSqlBoolean(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionOverflowExceptionSqlTypeExceptionSqlNullValueExceptionXmlExceptionTargetInvocationException
-
GetSqlByte
public SqlByte GetSqlByte(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionOverflowExceptionSqlTypeExceptionSqlNullValueExceptionXmlExceptionTargetInvocationException
-
GetSqlBytes
public SqlBytes GetSqlBytes(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionOverflowExceptionSqlTypeExceptionSqlNullValueExceptionXmlExceptionTargetInvocationException
-
GetSqlChars
public SqlChars GetSqlChars(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, XmlException, TargetInvocationException, FormatException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionSqlNullValueExceptionOverflowExceptionXmlExceptionTargetInvocationExceptionFormatException
-
GetSqlDateTime
public SqlDateTime GetSqlDateTime(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionOverflowExceptionSqlTypeExceptionSqlNullValueExceptionXmlExceptionTargetInvocationException
-
GetSqlDecimal
public SqlDecimal GetSqlDecimal(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlTypeException, OverflowException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionSqlTypeExceptionOverflowExceptionSqlNullValueExceptionXmlExceptionTargetInvocationException
-
GetSqlDouble
public SqlDouble GetSqlDouble(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionOverflowExceptionSqlTypeExceptionSqlNullValueExceptionXmlExceptionTargetInvocationException
-
GetSqlGuid
public SqlGuid GetSqlGuid(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionOverflowExceptionSqlTypeExceptionSqlNullValueExceptionXmlExceptionTargetInvocationException
-
GetSqlInt16
public SqlInt16 GetSqlInt16(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionOverflowExceptionSqlTypeExceptionSqlNullValueExceptionXmlExceptionTargetInvocationException
-
GetSqlInt32
public SqlInt32 GetSqlInt32(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionOverflowExceptionSqlTypeExceptionSqlNullValueExceptionXmlExceptionTargetInvocationException
-
GetSqlInt64
public SqlInt64 GetSqlInt64(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionOverflowExceptionSqlTypeExceptionSqlNullValueExceptionXmlExceptionTargetInvocationException
-
GetSqlMoney
public SqlMoney GetSqlMoney(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionOverflowExceptionSqlTypeExceptionSqlNullValueExceptionXmlExceptionTargetInvocationException
-
GetSqlSingle
public SqlSingle GetSqlSingle(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionOverflowExceptionSqlTypeExceptionSqlNullValueExceptionXmlExceptionTargetInvocationException
-
GetSqlString
public SqlString GetSqlString(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, XmlException, TargetInvocationException, FormatException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionSqlNullValueExceptionOverflowExceptionXmlExceptionTargetInvocationExceptionFormatException
-
GetSqlXml
public SqlXml GetSqlXml(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionOverflowExceptionSqlTypeExceptionSqlNullValueExceptionXmlExceptionTargetInvocationException
-
GetDateTime
public DateTime GetDateTime(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, SqlTypeException, XmlException, TargetInvocationException
- Overrides:
GetDateTimein classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionSqlNullValueExceptionOverflowExceptionSqlTypeExceptionXmlExceptionTargetInvocationException
-
GetDateTimeOffset
public DateTimeOffset GetDateTimeOffset(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, SqlTypeException, XmlException, TargetInvocationException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionSqlNullValueExceptionOverflowExceptionSqlTypeExceptionXmlExceptionTargetInvocationException
-
GetDecimal
public Decimal GetDecimal(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, SqlTypeException, XmlException, TargetInvocationException
- Overrides:
GetDecimalin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionSqlNullValueExceptionOverflowExceptionSqlTypeExceptionXmlExceptionTargetInvocationException
-
GetGuid
public Guid GetGuid(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Overrides:
GetGuidin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionOverflowExceptionSqlTypeExceptionSqlNullValueExceptionXmlExceptionTargetInvocationException
-
GetStream
public Stream GetStream(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Overrides:
GetStreamin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionOverflowExceptionSqlTypeExceptionSqlNullValueExceptionXmlExceptionTargetInvocationException
-
GetTextReader
public TextReader GetTextReader(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Overrides:
GetTextReaderin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionOverflowExceptionSqlTypeExceptionSqlNullValueExceptionXmlExceptionTargetInvocationException
-
GetProviderSpecificValue
public NetObject GetProviderSpecificValue(int i) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, FormatException, IndexOutOfRangeException, SqlNullValueException, OverflowException, NotSupportedException, FileNotFoundException, TypeLoadException, AccessViolationException, InvalidUdtException
- Overrides:
GetProviderSpecificValuein classDbDataReader- Throws:
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentNullExceptionArgumentExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionFormatExceptionIndexOutOfRangeExceptionSqlNullValueExceptionOverflowExceptionNotSupportedExceptionFileNotFoundExceptionTypeLoadExceptionAccessViolationExceptionInvalidUdtException
-
GetSqlValue
public NetObject GetSqlValue(int i) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, XmlException, TargetInvocationException, FormatException, FileNotFoundException, TypeLoadException, AccessViolationException, InvalidUdtException
- Throws:
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentNullExceptionArgumentExceptionOverflowExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionSqlNullValueExceptionXmlExceptionTargetInvocationExceptionFormatExceptionFileNotFoundExceptionTypeLoadExceptionAccessViolationExceptionInvalidUdtException
-
GetValue
public NetObject GetValue(int i) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, XmlException, TargetInvocationException, FormatException, FileNotFoundException, TypeLoadException, AccessViolationException, InvalidUdtException
- Overrides:
GetValuein classDbDataReader- Throws:
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentNullExceptionArgumentExceptionOverflowExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionSqlNullValueExceptionXmlExceptionTargetInvocationExceptionFormatExceptionFileNotFoundExceptionTypeLoadExceptionAccessViolationExceptionInvalidUdtException
-
GetDataTypeName
public java.lang.String GetDataTypeName(int i) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, FormatException, OutOfMemoryException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SqlException, SqlTypeException, SqlNullValueException, SqlTruncateException, TypeLoadException- Overrides:
GetDataTypeNamein classDbDataReader- Throws:
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentNullExceptionArgumentExceptionOverflowExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionFormatExceptionOutOfMemoryExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSqlExceptionSqlTypeExceptionSqlNullValueExceptionSqlTruncateExceptionTypeLoadException
-
GetName
public java.lang.String GetName(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, FormatException, OverflowException, OutOfMemoryException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SqlException, SqlTypeException, SqlNullValueException, SqlTruncateException, TypeLoadException- Overrides:
GetNamein classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionFormatExceptionOverflowExceptionOutOfMemoryExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSqlExceptionSqlTypeExceptionSqlNullValueExceptionSqlTruncateExceptionTypeLoadException
-
GetString
public java.lang.String GetString(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, SqlTypeException, XmlException, TargetInvocationException, FormatException, OutOfMemoryException- Overrides:
GetStringin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionSqlNullValueExceptionOverflowExceptionSqlTypeExceptionXmlExceptionTargetInvocationExceptionFormatExceptionOutOfMemoryException
-
GetTimeSpan
public TimeSpan GetTimeSpan(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, SqlTypeException, XmlException, TargetInvocationException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionSqlNullValueExceptionOverflowExceptionSqlTypeExceptionXmlExceptionTargetInvocationException
-
GetFieldType
public NetType GetFieldType(int i) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, FormatException, OutOfMemoryException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SqlException, SqlTypeException, SqlNullValueException, SqlTruncateException, TypeLoadException
- Overrides:
GetFieldTypein classDbDataReader- Throws:
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentNullExceptionArgumentExceptionOverflowExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionFormatExceptionOutOfMemoryExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSqlExceptionSqlTypeExceptionSqlNullValueExceptionSqlTruncateExceptionTypeLoadException
-
GetProviderSpecificFieldType
public NetType GetProviderSpecificFieldType(int i) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, FormatException, OutOfMemoryException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SqlException, SqlTypeException, SqlNullValueException, SqlTruncateException, TypeLoadException
- Overrides:
GetProviderSpecificFieldTypein classDbDataReader- Throws:
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentNullExceptionArgumentExceptionOverflowExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionFormatExceptionOutOfMemoryExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSqlExceptionSqlTypeExceptionSqlNullValueExceptionSqlTruncateExceptionTypeLoadException
-
GetXmlReader
public XmlReader GetXmlReader(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, TargetInvocationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionTargetInvocationExceptionNotSupportedExceptionAggregateExceptionNullReferenceExceptionOverflowExceptionSqlTypeExceptionSqlNullValueExceptionXmlException
-
Close
public void Close() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, ObjectDisposedException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, InvalidOperationException, AggregateException, AbandonedMutexException, SecurityException, NullReferenceException, TaskSchedulerException, MissingManifestResourceException, SqlException, CultureNotFoundException, FormatException, OutOfMemoryException, IndexOutOfRangeException, WaitHandleCannotBeOpenedException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException, SqlTruncateException, TypeLoadException, NotImplementedException, AccessViolationException, InvalidUdtException, TransactionException, SemaphoreFullException- Overrides:
Closein classDbDataReader- Throws:
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentNullExceptionArgumentExceptionOverflowExceptionObjectDisposedExceptionNotSupportedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionInvalidOperationExceptionAggregateExceptionAbandonedMutexExceptionSecurityExceptionNullReferenceExceptionTaskSchedulerExceptionMissingManifestResourceExceptionSqlExceptionCultureNotFoundExceptionFormatExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionWaitHandleCannotBeOpenedExceptionSqlTypeExceptionSqlNullValueExceptionXmlExceptionTargetInvocationExceptionSqlTruncateExceptionTypeLoadExceptionNotImplementedExceptionAccessViolationExceptionInvalidUdtExceptionTransactionExceptionSemaphoreFullException
-
-