Package system.data.oledb
Class OleDbDataReader
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.MarshalByRefObject
-
- system.data.common.DbDataReader
-
- system.data.oledb.OleDbDataReader
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,IJCOBridgeReflected
public class OleDbDataReader extends DbDataReader
The base .NET class managing System.Data.OleDb.OleDbDataReader, System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Data.OleDb.OleDbDataReader
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.String
assemblyFullName
Fully assembly qualified name: System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089static java.lang.String
assemblyShortName
Assembly name: System.Datastatic java.lang.String
className
Qualified class name: System.Data.OleDb.OleDbDataReaderstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description OleDbDataReader()
OleDbDataReader(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OleDbDataReader
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoOleDbDataReader
, a cast assert is made to check if types are compatible.void
Close()
boolean
GetBoolean(int ordinal)
byte
GetByte(int ordinal)
long
GetBytes(int ordinal, long dataIndex, byte[] buffer, int bufferIndex, int length)
long
GetBytes(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4)
char
GetChar(int ordinal)
long
GetChars(int ordinal, long dataIndex, char[] buffer, int bufferIndex, int length)
long
GetChars(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4)
OleDbDataReader
GetDataNewOleDbDataReader(int ordinal)
java.lang.String
GetDataTypeName(int index)
DateTime
GetDateTime(int ordinal)
Decimal
GetDecimal(int ordinal)
double
GetDouble(int ordinal)
NetType
GetFieldType(int index)
Single
GetFloat(int ordinal)
Guid
GetGuid(int ordinal)
short
GetInt16(int ordinal)
int
GetInt32(int ordinal)
long
GetInt64(int ordinal)
java.lang.String
getJCOAssemblyName()
Returns the reflected Assembly namejava.lang.String
getJCOClassName()
Returns the reflected Class namejava.lang.Object
getJCOInstance()
Returns the instantiated classjava.lang.String
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class Typejava.lang.String
GetName(int index)
int
GetOrdinal(java.lang.String name)
DataTable
GetSchemaTable()
java.lang.String
GetString(int ordinal)
TimeSpan
GetTimeSpan(int ordinal)
NetObject
GetValue(int ordinal)
int
GetValues(NetObject[] values)
boolean
IsDBNull(int ordinal)
boolean
NextResult()
boolean
Read()
void
setJCOInstance(JCObject instance)
-
Methods inherited from class system.data.common.DbDataReader
close, Dispose, GetData, getDepth, getFieldCount, getHasRows, getIsClosed, GetProviderSpecificFieldType, GetProviderSpecificValue, GetProviderSpecificValues, 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, 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.OleDb.OleDbDataReader- See Also:
- Constant Field Values
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classDbDataReader
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classDbDataReader
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classDbDataReader
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classDbDataReader
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classDbDataReader
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classDbDataReader
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static OleDbDataReader cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoOleDbDataReader
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
OleDbDataReader
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
GetBoolean
public boolean GetBoolean(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, KeyNotFoundException, AccessViolationException, OutOfMemoryException, InvalidCastException
- Overrides:
GetBoolean
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
FormatException
KeyNotFoundException
AccessViolationException
OutOfMemoryException
InvalidCastException
-
IsDBNull
public boolean IsDBNull(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, KeyNotFoundException, AccessViolationException, OutOfMemoryException
- Overrides:
IsDBNull
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
FormatException
KeyNotFoundException
AccessViolationException
OutOfMemoryException
-
NextResult
public boolean NextResult() throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, AccessViolationException, OutOfMemoryException, InvalidCastException, NotSupportedException
- Overrides:
NextResult
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
AccessViolationException
OutOfMemoryException
InvalidCastException
NotSupportedException
-
Read
public boolean Read() throws java.lang.Throwable, ArgumentException, AccessViolationException, ArgumentNullException, KeyNotFoundException, InvalidOperationException, ObjectDisposedException, NotImplementedException, MissingManifestResourceException, ArgumentOutOfRangeException
- Overrides:
Read
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentException
AccessViolationException
ArgumentNullException
KeyNotFoundException
InvalidOperationException
ObjectDisposedException
NotImplementedException
MissingManifestResourceException
ArgumentOutOfRangeException
-
GetByte
public byte GetByte(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, KeyNotFoundException, AccessViolationException, OutOfMemoryException, InvalidCastException
- Overrides:
GetByte
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
FormatException
KeyNotFoundException
AccessViolationException
OutOfMemoryException
InvalidCastException
-
GetChar
public char GetChar(int ordinal) throws java.lang.Throwable, NotSupportedException
- Overrides:
GetChar
in classDbDataReader
- Throws:
java.lang.Throwable
NotSupportedException
-
GetDouble
public double GetDouble(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, KeyNotFoundException, AccessViolationException, OutOfMemoryException, InvalidCastException
- Overrides:
GetDouble
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
FormatException
KeyNotFoundException
AccessViolationException
OutOfMemoryException
InvalidCastException
-
GetInt16
public short GetInt16(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, KeyNotFoundException, AccessViolationException, OutOfMemoryException, InvalidCastException
- Overrides:
GetInt16
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
FormatException
KeyNotFoundException
AccessViolationException
OutOfMemoryException
InvalidCastException
-
GetInt32
public int GetInt32(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, KeyNotFoundException, AccessViolationException, OutOfMemoryException, InvalidCastException
- Overrides:
GetInt32
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
FormatException
KeyNotFoundException
AccessViolationException
OutOfMemoryException
InvalidCastException
-
GetOrdinal
public int GetOrdinal(java.lang.String name) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException
- Overrides:
GetOrdinal
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
-
GetValues
public int GetValues(NetObject[] values) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, KeyNotFoundException, AccessViolationException, OverflowException, InvalidCastException
- Overrides:
GetValues
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
KeyNotFoundException
AccessViolationException
OverflowException
InvalidCastException
-
GetBytes
public long GetBytes(int ordinal, long dataIndex, byte[] buffer, int bufferIndex, int length) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, KeyNotFoundException, AccessViolationException, OutOfMemoryException, InvalidCastException
- Overrides:
GetBytes
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
KeyNotFoundException
AccessViolationException
OutOfMemoryException
InvalidCastException
-
GetBytes
public long GetBytes(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, KeyNotFoundException, AccessViolationException, OutOfMemoryException, InvalidCastException
- Overrides:
GetBytes
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
KeyNotFoundException
AccessViolationException
OutOfMemoryException
InvalidCastException
-
GetChars
public long GetChars(int ordinal, long dataIndex, char[] buffer, int bufferIndex, int length) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, KeyNotFoundException, AccessViolationException, OutOfMemoryException, InvalidCastException
- Overrides:
GetChars
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
KeyNotFoundException
AccessViolationException
OutOfMemoryException
InvalidCastException
-
GetChars
public long GetChars(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, KeyNotFoundException, AccessViolationException, OutOfMemoryException, InvalidCastException
- Overrides:
GetChars
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
KeyNotFoundException
AccessViolationException
OutOfMemoryException
InvalidCastException
-
GetInt64
public long GetInt64(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, KeyNotFoundException, AccessViolationException, OutOfMemoryException, InvalidCastException
- Overrides:
GetInt64
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
FormatException
KeyNotFoundException
AccessViolationException
OutOfMemoryException
InvalidCastException
-
GetFloat
public Single GetFloat(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, KeyNotFoundException, AccessViolationException, OutOfMemoryException, InvalidCastException
- Overrides:
GetFloat
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
FormatException
KeyNotFoundException
AccessViolationException
OutOfMemoryException
InvalidCastException
-
GetSchemaTable
public DataTable GetSchemaTable() throws java.lang.Throwable, ArgumentNullException, OutOfMemoryException, AccessViolationException, IndexOutOfRangeException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, MissingMethodException, TargetInvocationException, InvalidCastException, FormatException, KeyNotFoundException, NullReferenceException, ConfigurationErrorsException, DataException, OverflowException
- Overrides:
GetSchemaTable
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
OutOfMemoryException
AccessViolationException
IndexOutOfRangeException
InvalidOperationException
ArgumentException
ArgumentOutOfRangeException
CultureNotFoundException
NotSupportedException
MissingMethodException
TargetInvocationException
InvalidCastException
FormatException
KeyNotFoundException
NullReferenceException
ConfigurationErrorsException
DataException
OverflowException
-
GetDataNewOleDbDataReader
public OleDbDataReader GetDataNewOleDbDataReader(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, KeyNotFoundException, AccessViolationException, OutOfMemoryException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
FormatException
KeyNotFoundException
AccessViolationException
OutOfMemoryException
InvalidCastException
-
GetDateTime
public DateTime GetDateTime(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, KeyNotFoundException, AccessViolationException, OutOfMemoryException, OverflowException, InvalidCastException
- Overrides:
GetDateTime
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
FormatException
KeyNotFoundException
AccessViolationException
OutOfMemoryException
OverflowException
InvalidCastException
-
GetDecimal
public Decimal GetDecimal(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, KeyNotFoundException, AccessViolationException, OutOfMemoryException, InvalidCastException
- Overrides:
GetDecimal
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
FormatException
KeyNotFoundException
AccessViolationException
OutOfMemoryException
InvalidCastException
-
GetGuid
public Guid GetGuid(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, KeyNotFoundException, AccessViolationException, OutOfMemoryException, InvalidCastException
- Overrides:
GetGuid
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
FormatException
KeyNotFoundException
AccessViolationException
OutOfMemoryException
InvalidCastException
-
GetValue
public NetObject GetValue(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, KeyNotFoundException, AccessViolationException, OutOfMemoryException, OverflowException, InvalidCastException
- Overrides:
GetValue
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
FormatException
KeyNotFoundException
AccessViolationException
OutOfMemoryException
OverflowException
InvalidCastException
-
GetDataTypeName
public java.lang.String GetDataTypeName(int index) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
- Overrides:
GetDataTypeName
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
-
GetName
public java.lang.String GetName(int index) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
- Overrides:
GetName
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
-
GetString
public java.lang.String GetString(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, KeyNotFoundException, AccessViolationException, OutOfMemoryException, InvalidCastException
- Overrides:
GetString
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
FormatException
KeyNotFoundException
AccessViolationException
OutOfMemoryException
InvalidCastException
-
GetTimeSpan
public TimeSpan GetTimeSpan(int ordinal) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetFieldType
public NetType GetFieldType(int index) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
- Overrides:
GetFieldType
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
-
Close
public void Close() throws java.lang.Throwable, ArgumentException, AccessViolationException, IndexOutOfRangeException, ArgumentOutOfRangeException, ArgumentNullException, MissingManifestResourceException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, AbandonedMutexException, SecurityException, NotSupportedException, CultureNotFoundException, NotImplementedException, KeyNotFoundException
- Overrides:
Close
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentException
AccessViolationException
IndexOutOfRangeException
ArgumentOutOfRangeException
ArgumentNullException
MissingManifestResourceException
InvalidOperationException
OutOfMemoryException
ObjectDisposedException
AbandonedMutexException
SecurityException
NotSupportedException
CultureNotFoundException
NotImplementedException
KeyNotFoundException
-
-