Package system.data
Class IDataRecordImplementation
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.data.IDataRecordImplementation
-
- All Implemented Interfaces:
IJCOBridgeReflected
,IDataRecord
public class IDataRecordImplementation extends NetObject implements IDataRecord
The base .NET class managing System.Data.IDataRecord, System.Data.Common, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Data.IDataRecord
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.Common, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic java.lang.String
assemblyShortName
Assembly name: System.Data.Commonstatic java.lang.String
className
Qualified class name: System.Data.IDataRecordstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description IDataRecordImplementation(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description 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)
java.lang.String
GetDataTypeName(int i)
DateTime
GetDateTime(int i)
Decimal
GetDecimal(int i)
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)
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 i)
int
GetOrdinal(java.lang.String name)
java.lang.String
GetString(int i)
NetObject
GetValue(int i)
int
GetValues(NetObject[] values)
boolean
IsDBNull(int i)
static IDataRecord
ToIDataRecord(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoIDataRecord
, 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, toString, ToString
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Data.Common, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Data.Common- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Data.IDataRecord- 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 interfaceIDataRecord
- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classNetObject
- 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 interfaceIDataRecord
- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classNetObject
- 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 interfaceIDataRecord
- 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 java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIDataRecord
- 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 interfaceIDataRecord
- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
ToIDataRecord
public static IDataRecord ToIDataRecord(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoIDataRecord
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
IDataRecord
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
GetBoolean
public boolean GetBoolean(int i) throws java.lang.Throwable
- Specified by:
GetBoolean
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
IsDBNull
public boolean IsDBNull(int i) throws java.lang.Throwable
- Specified by:
IsDBNull
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
GetByte
public byte GetByte(int i) throws java.lang.Throwable
- Specified by:
GetByte
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
GetChar
public char GetChar(int i) throws java.lang.Throwable
- Specified by:
GetChar
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
GetDouble
public double GetDouble(int i) throws java.lang.Throwable
- Specified by:
GetDouble
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
GetInt16
public short GetInt16(int i) throws java.lang.Throwable
- Specified by:
GetInt16
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
GetInt32
public int GetInt32(int i) throws java.lang.Throwable
- Specified by:
GetInt32
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
GetOrdinal
public int GetOrdinal(java.lang.String name) throws java.lang.Throwable
- Specified by:
GetOrdinal
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
GetValues
public int GetValues(NetObject[] values) throws java.lang.Throwable
- Specified by:
GetValues
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
GetBytes
public long GetBytes(int i, long fieldOffset, byte[] buffer, int bufferoffset, int length) throws java.lang.Throwable
- Specified by:
GetBytes
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
GetBytes
public long GetBytes(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4) throws java.lang.Throwable
- Specified by:
GetBytes
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
GetChars
public long GetChars(int i, long fieldoffset, char[] buffer, int bufferoffset, int length) throws java.lang.Throwable
- Specified by:
GetChars
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
GetChars
public long GetChars(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4) throws java.lang.Throwable
- Specified by:
GetChars
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
GetInt64
public long GetInt64(int i) throws java.lang.Throwable
- Specified by:
GetInt64
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
GetFloat
public Single GetFloat(int i) throws java.lang.Throwable
- Specified by:
GetFloat
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
GetData
public IDataReader GetData(int i) throws java.lang.Throwable
- Specified by:
GetData
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
GetDateTime
public DateTime GetDateTime(int i) throws java.lang.Throwable
- Specified by:
GetDateTime
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
GetDecimal
public Decimal GetDecimal(int i) throws java.lang.Throwable
- Specified by:
GetDecimal
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
GetGuid
public Guid GetGuid(int i) throws java.lang.Throwable
- Specified by:
GetGuid
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
GetValue
public NetObject GetValue(int i) throws java.lang.Throwable
- Specified by:
GetValue
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
GetDataTypeName
public java.lang.String GetDataTypeName(int i) throws java.lang.Throwable
- Specified by:
GetDataTypeName
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
GetName
public java.lang.String GetName(int i) throws java.lang.Throwable
- Specified by:
GetName
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
GetString
public java.lang.String GetString(int i) throws java.lang.Throwable
- Specified by:
GetString
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
GetFieldType
public NetType GetFieldType(int i) throws java.lang.Throwable
- Specified by:
GetFieldType
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
getFieldCount
public int getFieldCount() throws java.lang.Throwable
- Specified by:
getFieldCount
in interfaceIDataRecord
- Throws:
java.lang.Throwable
-
-