Package system.data.objects
Class DbUpdatableDataRecord
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.data.common.DbDataRecord
-
- system.data.objects.DbUpdatableDataRecord
-
- All Implemented Interfaces:
IJCOBridgeReflected
,ICustomTypeDescriptor
- Direct Known Subclasses:
CurrentValueRecord
,OriginalValueRecord
public class DbUpdatableDataRecord extends DbDataRecord
The base .NET class managing System.Data.Objects.DbUpdatableDataRecord, System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Data.Objects.DbUpdatableDataRecord
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.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089static java.lang.String
assemblyShortName
Assembly name: System.Data.Entitystatic java.lang.String
className
Qualified class name: System.Data.Objects.DbUpdatableDataRecordstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description DbUpdatableDataRecord()
DbUpdatableDataRecord(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DbUpdatableDataRecord
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoDbUpdatableDataRecord
, a cast assert is made to check if types are compatible.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)
DbDataReader
GetDataReader(int i)
DbDataRecord
GetDataRecord(int ordinal)
DataRecordInfo
getDataRecordInfo()
java.lang.String
GetDataTypeName(int ordinal)
DateTime
GetDateTime(int ordinal)
Decimal
GetDecimal(int ordinal)
double
GetDouble(int ordinal)
NetType
GetFieldType(int ordinal)
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 ordinal)
int
GetOrdinal(java.lang.String name)
java.lang.String
GetString(int ordinal)
NetObject
GetValue(int ordinal)
int
GetValues(NetObject[] values)
boolean
IsDBNull(int ordinal)
void
SetBoolean(int ordinal, boolean value)
void
SetByte(int ordinal, byte value)
void
SetChar(int ordinal, char value)
void
SetDataRecord(int ordinal, IDataRecord value)
void
SetDateTime(int ordinal, DateTime value)
void
SetDBNull(int ordinal)
void
SetDecimal(int ordinal, Decimal value)
void
SetDouble(int ordinal, double value)
void
SetFloat(int ordinal, Single value)
void
SetGuid(int ordinal, Guid value)
void
SetInt16(int ordinal, short value)
void
SetInt32(int ordinal, int value)
void
SetInt64(int ordinal, long value)
void
setJCOInstance(JCObject instance)
void
SetString(int ordinal, java.lang.String value)
void
SetValue(int ordinal, NetObject value)
int
SetValues(NetObject... values)
-
Methods inherited from class system.data.common.DbDataRecord
GetData, getFieldCount
-
Methods inherited from class org.mases.jcobridge.netreflection.NetObject
Equals, Equals, GetHashCode, GetType, hashCode, toString, ToString
-
Methods inherited from interface system.componentmodel.ICustomTypeDescriptor
GetAttributes, GetClassName, GetComponentName, GetConverter, GetDefaultEvent, GetDefaultProperty, GetEditor, GetEvents, GetEvents, GetProperties, GetProperties, GetPropertyOwner
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Data.Entity, 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.Entity- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Data.Objects.DbUpdatableDataRecord- 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 interfaceICustomTypeDescriptor
- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classDbDataRecord
- 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 interfaceICustomTypeDescriptor
- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classDbDataRecord
- 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 interfaceICustomTypeDescriptor
- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classDbDataRecord
- 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 interfaceICustomTypeDescriptor
- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classDbDataRecord
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classDbDataRecord
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceICustomTypeDescriptor
- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classDbDataRecord
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static DbUpdatableDataRecord cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoDbUpdatableDataRecord
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
DbUpdatableDataRecord
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
GetBoolean
public boolean GetBoolean(int ordinal) throws java.lang.Throwable
- Overrides:
GetBoolean
in classDbDataRecord
- Throws:
java.lang.Throwable
-
IsDBNull
public boolean IsDBNull(int ordinal) throws java.lang.Throwable
- Overrides:
IsDBNull
in classDbDataRecord
- Throws:
java.lang.Throwable
-
GetByte
public byte GetByte(int ordinal) throws java.lang.Throwable
- Overrides:
GetByte
in classDbDataRecord
- Throws:
java.lang.Throwable
-
GetChar
public char GetChar(int ordinal) throws java.lang.Throwable
- Overrides:
GetChar
in classDbDataRecord
- Throws:
java.lang.Throwable
-
GetDouble
public double GetDouble(int ordinal) throws java.lang.Throwable
- Overrides:
GetDouble
in classDbDataRecord
- Throws:
java.lang.Throwable
-
GetInt16
public short GetInt16(int ordinal) throws java.lang.Throwable
- Overrides:
GetInt16
in classDbDataRecord
- Throws:
java.lang.Throwable
-
GetInt32
public int GetInt32(int ordinal) throws java.lang.Throwable
- Overrides:
GetInt32
in classDbDataRecord
- Throws:
java.lang.Throwable
-
GetOrdinal
public int GetOrdinal(java.lang.String name) throws java.lang.Throwable, ArgumentOutOfRangeException
- Overrides:
GetOrdinal
in classDbDataRecord
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
-
GetValues
public int GetValues(NetObject[] values) throws java.lang.Throwable, ArgumentNullException
- Overrides:
GetValues
in classDbDataRecord
- Throws:
java.lang.Throwable
ArgumentNullException
-
SetValues
public int SetValues(NetObject... values) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetBytes
public long GetBytes(int ordinal, long dataIndex, byte[] buffer, int bufferIndex, int length) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, ArgumentOutOfRangeException, NotImplementedException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException
- Overrides:
GetBytes
in classDbDataRecord
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
ArgumentOutOfRangeException
NotImplementedException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
-
GetBytes
public long GetBytes(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, ArgumentOutOfRangeException, NotImplementedException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException
- Overrides:
GetBytes
in classDbDataRecord
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
ArgumentOutOfRangeException
NotImplementedException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
-
GetChars
public long GetChars(int ordinal, long dataIndex, char[] buffer, int bufferIndex, int length) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, ArgumentOutOfRangeException, NotImplementedException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException
- Overrides:
GetChars
in classDbDataRecord
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
ArgumentOutOfRangeException
NotImplementedException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
-
GetChars
public long GetChars(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, ArgumentOutOfRangeException, NotImplementedException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException
- Overrides:
GetChars
in classDbDataRecord
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
ArgumentOutOfRangeException
NotImplementedException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
-
GetInt64
public long GetInt64(int ordinal) throws java.lang.Throwable
- Overrides:
GetInt64
in classDbDataRecord
- Throws:
java.lang.Throwable
-
GetFloat
public Single GetFloat(int ordinal) throws java.lang.Throwable
- Overrides:
GetFloat
in classDbDataRecord
- Throws:
java.lang.Throwable
-
GetDataReader
public DbDataReader GetDataReader(int i) throws java.lang.Throwable, NotSupportedException
- Throws:
java.lang.Throwable
NotSupportedException
-
GetDataRecord
public DbDataRecord GetDataRecord(int ordinal) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetDateTime
public DateTime GetDateTime(int ordinal) throws java.lang.Throwable
- Overrides:
GetDateTime
in classDbDataRecord
- Throws:
java.lang.Throwable
-
GetDecimal
public Decimal GetDecimal(int ordinal) throws java.lang.Throwable
- Overrides:
GetDecimal
in classDbDataRecord
- Throws:
java.lang.Throwable
-
GetGuid
public Guid GetGuid(int ordinal) throws java.lang.Throwable
- Overrides:
GetGuid
in classDbDataRecord
- Throws:
java.lang.Throwable
-
GetValue
public NetObject GetValue(int ordinal) throws java.lang.Throwable
- Overrides:
GetValue
in classDbDataRecord
- Throws:
java.lang.Throwable
-
GetDataTypeName
public java.lang.String GetDataTypeName(int ordinal) throws java.lang.Throwable
- Overrides:
GetDataTypeName
in classDbDataRecord
- Throws:
java.lang.Throwable
-
GetName
public java.lang.String GetName(int ordinal) throws java.lang.Throwable
- Overrides:
GetName
in classDbDataRecord
- Throws:
java.lang.Throwable
-
GetString
public java.lang.String GetString(int ordinal) throws java.lang.Throwable
- Overrides:
GetString
in classDbDataRecord
- Throws:
java.lang.Throwable
-
GetFieldType
public NetType GetFieldType(int ordinal) throws java.lang.Throwable
- Overrides:
GetFieldType
in classDbDataRecord
- Throws:
java.lang.Throwable
-
SetBoolean
public void SetBoolean(int ordinal, boolean value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
SetByte
public void SetByte(int ordinal, byte value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
SetChar
public void SetChar(int ordinal, char value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
SetDataRecord
public void SetDataRecord(int ordinal, IDataRecord value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
SetDateTime
public void SetDateTime(int ordinal, DateTime value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
SetDBNull
public void SetDBNull(int ordinal) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
SetDecimal
public void SetDecimal(int ordinal, Decimal value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
SetDouble
public void SetDouble(int ordinal, double value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
SetFloat
public void SetFloat(int ordinal, Single value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
SetGuid
public void SetGuid(int ordinal, Guid value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
SetInt16
public void SetInt16(int ordinal, short value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
SetInt32
public void SetInt32(int ordinal, int value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
SetInt64
public void SetInt64(int ordinal, long value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
SetString
public void SetString(int ordinal, java.lang.String value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
SetValue
public void SetValue(int ordinal, NetObject value) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getDataRecordInfo
public DataRecordInfo getDataRecordInfo() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-