Package system.data
Class IDataReaderImplementation
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.data.IDataReaderImplementation
-
- All Implemented Interfaces:
IJCOBridgeReflected
,IDataReader
,IDataRecord
,IDisposable
public class IDataReaderImplementation extends NetObject implements IDataReader
The base .NET class managing System.Data.IDataReader, System.Data.Common, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Data.IDataReader
Powered by JCOBridge: more info at https://www.jcobridge.com
- Version:
- 1.14.3.0
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static String
assemblyFullName
Fully assembly qualified name: System.Data.Common, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic String
assemblyShortName
Assembly name: System.Data.Commonstatic String
className
Qualified class name: System.Data.IDataReaderstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description IDataReaderImplementation(Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
Close()
void
Dispose()
boolean
GetBoolean(int i)
byte
GetByte(int i)
long
GetBytes(int i, long fieldOffset, byte[] buffer, int bufferoffset, int length)
long
GetBytes(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4)
char
GetChar(int i)
long
GetChars(int i, long fieldoffset, char[] buffer, int bufferoffset, int length)
long
GetChars(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4)
IDataReader
GetData(int i)
String
GetDataTypeName(int i)
DateTime
GetDateTime(int i)
Decimal
GetDecimal(int i)
int
getDepth()
double
GetDouble(int i)
int
getFieldCount()
NetType
GetFieldType(int i)
Single
GetFloat(int i)
Guid
GetGuid(int i)
short
GetInt16(int i)
int
GetInt32(int i)
long
GetInt64(int i)
boolean
getIsClosed()
String
getJCOAssemblyName()
Returns the reflected Assembly nameString
getJCOClassName()
Returns the reflected Class nameObject
getJCOInstance()
Returns the instantiated classString
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class TypeString
GetName(int i)
int
GetOrdinal(String name)
int
getRecordsAffected()
DataTable
GetSchemaTable()
String
GetString(int i)
NetObject
GetValue(int i)
int
GetValues(NetObject[] values)
boolean
IsDBNull(int i)
boolean
NextResult()
boolean
Read()
static IDataReader
ToIDataReader(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoIDataReader
, a cast assert is made to check if types are compatible.-
Methods inherited from class org.mases.jcobridge.netreflection.NetObject
cast, Equals, Equals, GetHashCode, GetType, hashCode, setJCOInstance, toObjectFromArray, toObjectFromArray, toString, ToString, translateException
-
-
-
-
Field Detail
-
assemblyFullName
public static final String assemblyFullName
Fully assembly qualified name: System.Data.Common, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
public static final String assemblyShortName
Assembly name: System.Data.Common- See Also:
- Constant Field Values
-
className
public static final String className
Qualified class name: System.Data.IDataReader- See Also:
- Constant Field Values
-
-
Method Detail
-
getJCOAssemblyName
public String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIDataReader
- Specified by:
getJCOAssemblyName
in interfaceIDataRecord
- Specified by:
getJCOAssemblyName
in interfaceIDisposable
- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIDataReader
- Specified by:
getJCOClassName
in interfaceIDataRecord
- Specified by:
getJCOClassName
in interfaceIDisposable
- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIDataReader
- Specified by:
getJCOObjectName
in interfaceIDataRecord
- Specified by:
getJCOObjectName
in interfaceIDisposable
- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classNetObject
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIDataReader
- Specified by:
getJCOInstance
in interfaceIDataRecord
- Specified by:
getJCOInstance
in interfaceIDisposable
- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classNetObject
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIDataReader
- Specified by:
getJCOType
in interfaceIDataRecord
- Specified by:
getJCOType
in interfaceIDisposable
- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
ToIDataReader
public static IDataReader ToIDataReader(IJCOBridgeReflected from) throws Throwable
Try to cast theIJCOBridgeReflected
instance intoIDataReader
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
IDataReader
instance- Throws:
Throwable
- in case of error during cast operation
-
GetBoolean
public boolean GetBoolean(int i) throws Throwable
- Specified by:
GetBoolean
in interfaceIDataRecord
- Throws:
Throwable
-
IsDBNull
public boolean IsDBNull(int i) throws Throwable
- Specified by:
IsDBNull
in interfaceIDataRecord
- Throws:
Throwable
-
NextResult
public boolean NextResult() throws Throwable
- Specified by:
NextResult
in interfaceIDataReader
- Throws:
Throwable
-
Read
public boolean Read() throws Throwable
- Specified by:
Read
in interfaceIDataReader
- Throws:
Throwable
-
GetByte
public byte GetByte(int i) throws Throwable
- Specified by:
GetByte
in interfaceIDataRecord
- Throws:
Throwable
-
GetChar
public char GetChar(int i) throws Throwable
- Specified by:
GetChar
in interfaceIDataRecord
- Throws:
Throwable
-
GetDouble
public double GetDouble(int i) throws Throwable
- Specified by:
GetDouble
in interfaceIDataRecord
- Throws:
Throwable
-
GetInt16
public short GetInt16(int i) throws Throwable
- Specified by:
GetInt16
in interfaceIDataRecord
- Throws:
Throwable
-
GetInt32
public int GetInt32(int i) throws Throwable
- Specified by:
GetInt32
in interfaceIDataRecord
- Throws:
Throwable
-
GetOrdinal
public int GetOrdinal(String name) throws Throwable
- Specified by:
GetOrdinal
in interfaceIDataRecord
- Throws:
Throwable
-
GetValues
public int GetValues(NetObject[] values) throws Throwable
- Specified by:
GetValues
in interfaceIDataRecord
- Throws:
Throwable
-
GetBytes
public long GetBytes(int i, long fieldOffset, byte[] buffer, int bufferoffset, int length) throws Throwable
- Specified by:
GetBytes
in interfaceIDataRecord
- Throws:
Throwable
-
GetBytes
public long GetBytes(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4) throws Throwable
- Specified by:
GetBytes
in interfaceIDataRecord
- Throws:
Throwable
-
GetChars
public long GetChars(int i, long fieldoffset, char[] buffer, int bufferoffset, int length) throws Throwable
- Specified by:
GetChars
in interfaceIDataRecord
- Throws:
Throwable
-
GetChars
public long GetChars(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4) throws Throwable
- Specified by:
GetChars
in interfaceIDataRecord
- Throws:
Throwable
-
GetInt64
public long GetInt64(int i) throws Throwable
- Specified by:
GetInt64
in interfaceIDataRecord
- Throws:
Throwable
-
GetFloat
public Single GetFloat(int i) throws Throwable
- Specified by:
GetFloat
in interfaceIDataRecord
- Throws:
Throwable
-
GetSchemaTable
public DataTable GetSchemaTable() throws Throwable
- Specified by:
GetSchemaTable
in interfaceIDataReader
- Throws:
Throwable
-
GetData
public IDataReader GetData(int i) throws Throwable
- Specified by:
GetData
in interfaceIDataRecord
- Throws:
Throwable
-
GetDateTime
public DateTime GetDateTime(int i) throws Throwable
- Specified by:
GetDateTime
in interfaceIDataRecord
- Throws:
Throwable
-
GetDecimal
public Decimal GetDecimal(int i) throws Throwable
- Specified by:
GetDecimal
in interfaceIDataRecord
- Throws:
Throwable
-
GetGuid
public Guid GetGuid(int i) throws Throwable
- Specified by:
GetGuid
in interfaceIDataRecord
- Throws:
Throwable
-
GetValue
public NetObject GetValue(int i) throws Throwable
- Specified by:
GetValue
in interfaceIDataRecord
- Throws:
Throwable
-
GetDataTypeName
public String GetDataTypeName(int i) throws Throwable
- Specified by:
GetDataTypeName
in interfaceIDataRecord
- Throws:
Throwable
-
GetName
public String GetName(int i) throws Throwable
- Specified by:
GetName
in interfaceIDataRecord
- Throws:
Throwable
-
GetString
public String GetString(int i) throws Throwable
- Specified by:
GetString
in interfaceIDataRecord
- Throws:
Throwable
-
GetFieldType
public NetType GetFieldType(int i) throws Throwable
- Specified by:
GetFieldType
in interfaceIDataRecord
- Throws:
Throwable
-
Close
public void Close() throws Throwable
- Specified by:
Close
in interfaceIDataReader
- Throws:
Throwable
-
Dispose
public void Dispose() throws Throwable
- Specified by:
Dispose
in interfaceIDisposable
- Throws:
Throwable
-
getIsClosed
public boolean getIsClosed() throws Throwable
- Specified by:
getIsClosed
in interfaceIDataReader
- Throws:
Throwable
-
getDepth
public int getDepth() throws Throwable
- Specified by:
getDepth
in interfaceIDataReader
- Throws:
Throwable
-
getFieldCount
public int getFieldCount() throws Throwable
- Specified by:
getFieldCount
in interfaceIDataRecord
- Throws:
Throwable
-
getRecordsAffected
public int getRecordsAffected() throws Throwable
- Specified by:
getRecordsAffected
in interfaceIDataReader
- Throws:
Throwable
-
-