Package system.data.oracleclient
Class OracleDataReader
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.MarshalByRefObject
-
- system.data.common.DbDataReader
-
- system.data.oracleclient.OracleDataReader
-
- All Implemented Interfaces:
java.lang.AutoCloseable,IJCOBridgeReflected
public class OracleDataReader extends DbDataReader
The base .NET class managing System.Data.OracleClient.OracleDataReader, System.Data.OracleClient, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Data.OracleClient.OracleDataReader
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.OracleClient, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089static java.lang.StringassemblyShortNameAssembly name: System.Data.OracleClientstatic java.lang.StringclassNameQualified class name: System.Data.OracleClient.OracleDataReaderstatic JCTypeclassTypeThe type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description OracleDataReader()OracleDataReader(java.lang.Object instance)Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OracleDataReadercast(IJCOBridgeReflected from)Try to cast theIJCOBridgeReflectedinstance intoOracleDataReader, a cast assert is made to check if types are compatible.voidClose()booleanGetBoolean(int i)byteGetByte(int i)longGetBytes(int i, long fieldOffset, byte[] buffer2, int bufferoffset, int length)longGetBytes(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4)charGetChar(int i)longGetChars(int i, long fieldOffset, char[] buffer2, int bufferoffset, int length)longGetChars(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4)java.lang.StringGetDataTypeName(int i)DateTimeGetDateTime(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)OracleBFileGetOracleBFile(int i)OracleBinaryGetOracleBinary(int i)OracleDateTimeGetOracleDateTime(int i)OracleLobGetOracleLob(int i)OracleMonthSpanGetOracleMonthSpan(int i)OracleNumberGetOracleNumber(int i)OracleStringGetOracleString(int i)OracleTimeSpanGetOracleTimeSpan(int i)NetObjectGetOracleValue(int i)intGetOracleValues(NetObject[] values)intGetOrdinal(java.lang.String name)NetTypeGetProviderSpecificFieldType(int i)NetObjectGetProviderSpecificValue(int i)intGetProviderSpecificValues(NetObject[] values)DataTableGetSchemaTable()java.lang.StringGetString(int i)TimeSpanGetTimeSpan(int i)NetObjectGetValue(int i)intGetValues(NetObject[] values)booleanIsDBNull(int i)booleanNextResult()booleanRead()voidsetJCOInstance(JCObject instance)-
Methods inherited from class system.data.common.DbDataReader
close, Dispose, GetData, getDepth, getFieldCount, getHasRows, getIsClosed, getRecordsAffected, GetStream, GetTextReader, 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.OracleClient, 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.OracleClient- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Data.OracleClient.OracleDataReader- 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 OracleDataReader cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflectedinstance intoOracleDataReader, a cast assert is made to check if types are compatible.- Parameters:
from-IJCOBridgeReflectedinstance to be casted- Returns:
OracleDataReaderinstance- Throws:
java.lang.Throwable- in case of error during cast operation
-
GetBoolean
public boolean GetBoolean(int i) throws java.lang.Throwable- Overrides:
GetBooleanin classDbDataReader- Throws:
java.lang.Throwable
-
IsDBNull
public boolean IsDBNull(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException- Overrides:
IsDBNullin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionAccessViolationException
-
NextResult
public boolean NextResult() throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
-
Read
public boolean Read() throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, AccessViolationException- Overrides:
Readin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionOutOfMemoryExceptionAccessViolationException
-
GetByte
public byte GetByte(int i) throws java.lang.Throwable- Overrides:
GetBytein classDbDataReader- Throws:
java.lang.Throwable
-
GetChar
public char GetChar(int i) throws java.lang.Throwable- Overrides:
GetCharin classDbDataReader- Throws:
java.lang.Throwable
-
GetDouble
public double GetDouble(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException- Overrides:
GetDoublein classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionAccessViolationException
-
GetInt16
public short GetInt16(int i) throws java.lang.Throwable- Overrides:
GetInt16in classDbDataReader- Throws:
java.lang.Throwable
-
GetInt32
public int GetInt32(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException, OutOfMemoryException- Overrides:
GetInt32in classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionAccessViolationExceptionOutOfMemoryException
-
GetOracleValues
public int GetOracleValues(NetObject[] values) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException, OverflowException
-
GetOrdinal
public int GetOrdinal(java.lang.String name) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException- Overrides:
GetOrdinalin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedException
-
GetProviderSpecificValues
public int GetProviderSpecificValues(NetObject[] values) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException, ArgumentOutOfRangeException
-
GetValues
public int GetValues(NetObject[] values) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException, OutOfMemoryException, FormatException, OverflowException
- Overrides:
GetValuesin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionAccessViolationExceptionOutOfMemoryExceptionFormatExceptionOverflowException
-
GetBytes
public long GetBytes(int i, long fieldOffset, byte[] buffer2, int bufferoffset, int length) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException- Overrides:
GetBytesin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionAccessViolationException
-
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, AccessViolationException- Overrides:
GetBytesin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionAccessViolationException
-
GetChars
public long GetChars(int i, long fieldOffset, char[] buffer2, int bufferoffset, int length) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException, OutOfMemoryException- Overrides:
GetCharsin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionAccessViolationExceptionOutOfMemoryException
-
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, AccessViolationException, OutOfMemoryException- Overrides:
GetCharsin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionAccessViolationExceptionOutOfMemoryException
-
GetInt64
public long GetInt64(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException, OutOfMemoryException- Overrides:
GetInt64in classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionAccessViolationExceptionOutOfMemoryException
-
GetFloat
public Single GetFloat(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException
- Overrides:
GetFloatin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionAccessViolationException
-
GetSchemaTable
public DataTable GetSchemaTable() throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, NullReferenceException, ConfigurationErrorsException, DataException, OverflowException, FormatException, InvalidCastException, KeyNotFoundException, OutOfMemoryException
- Overrides:
GetSchemaTablein classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNotSupportedExceptionNullReferenceExceptionConfigurationErrorsExceptionDataExceptionOverflowExceptionFormatExceptionInvalidCastExceptionKeyNotFoundExceptionOutOfMemoryException
-
GetOracleBFile
public OracleBFile GetOracleBFile(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException
-
GetOracleBinary
public OracleBinary GetOracleBinary(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException
-
GetOracleDateTime
public OracleDateTime GetOracleDateTime(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException, FormatException, OverflowException, OutOfMemoryException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionAccessViolationExceptionFormatExceptionOverflowExceptionOutOfMemoryException
-
GetOracleLob
public OracleLob GetOracleLob(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException
-
GetOracleMonthSpan
public OracleMonthSpan GetOracleMonthSpan(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException
-
GetOracleNumber
public OracleNumber GetOracleNumber(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException
-
GetOracleString
public OracleString GetOracleString(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException
-
GetOracleTimeSpan
public OracleTimeSpan GetOracleTimeSpan(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException
-
GetDateTime
public DateTime GetDateTime(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException, FormatException, OverflowException, OutOfMemoryException
- Overrides:
GetDateTimein classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionAccessViolationExceptionFormatExceptionOverflowExceptionOutOfMemoryException
-
GetDecimal
public Decimal GetDecimal(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException
- Overrides:
GetDecimalin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionAccessViolationException
-
GetGuid
public Guid GetGuid(int i) throws java.lang.Throwable
- Overrides:
GetGuidin classDbDataReader- Throws:
java.lang.Throwable
-
GetOracleValue
public NetObject GetOracleValue(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException, FormatException, OverflowException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionAccessViolationExceptionFormatExceptionOverflowException
-
GetProviderSpecificValue
public NetObject GetProviderSpecificValue(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException, ArgumentOutOfRangeException, OverflowException
- Overrides:
GetProviderSpecificValuein classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionAccessViolationExceptionArgumentOutOfRangeExceptionOverflowException
-
GetValue
public NetObject GetValue(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException, OutOfMemoryException, FormatException, OverflowException
- Overrides:
GetValuein classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionAccessViolationExceptionOutOfMemoryExceptionFormatExceptionOverflowException
-
GetDataTypeName
public java.lang.String GetDataTypeName(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException- Overrides:
GetDataTypeNamein classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationException
-
GetName
public java.lang.String GetName(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
-
GetString
public java.lang.String GetString(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException, OutOfMemoryException- Overrides:
GetStringin classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionAccessViolationExceptionOutOfMemoryException
-
GetTimeSpan
public TimeSpan GetTimeSpan(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, AccessViolationException
-
GetFieldType
public NetType GetFieldType(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
-
GetProviderSpecificFieldType
public NetType GetProviderSpecificFieldType(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
- Overrides:
GetProviderSpecificFieldTypein classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationException
-
Close
public void Close() throws java.lang.Throwable, ArgumentNullException, ArgumentException- Overrides:
Closein classDbDataReader- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentException
-
-