Package system.data.common
Class DbDataReader
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.MarshalByRefObject
-
- system.data.common.DbDataReader
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,IJCOBridgeReflected
- Direct Known Subclasses:
DataTableReader
public class DbDataReader extends MarshalByRefObject implements java.lang.AutoCloseable
The base .NET class managing System.Data.Common.DbDataReader, System.Data.Common, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Data.Common.DbDataReader
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=8.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.Common.DbDataReaderstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description DbDataReader()
DbDataReader(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DbDataReader
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoDbDataReader
, a cast assert is made to check if types are compatible.void
close()
void
Close()
Task
CloseAsync()
void
Dispose()
ValueTask
DisposeAsync()
boolean
GetBoolean(int ordinal)
byte
GetByte(int ordinal)
long
GetBytes(int ordinal, long dataOffset, byte[] buffer, int bufferOffset, int length)
long
GetBytes(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4)
char
GetChar(int ordinal)
long
GetChars(int ordinal, long dataOffset, char[] buffer, int bufferOffset, int length)
long
GetChars(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4)
DbDataReader
GetData(int ordinal)
java.lang.String
GetDataTypeName(int ordinal)
DateTime
GetDateTime(int ordinal)
Decimal
GetDecimal(int ordinal)
int
getDepth()
double
GetDouble(int ordinal)
int
getFieldCount()
NetType
GetFieldType(int ordinal)
Single
GetFloat(int ordinal)
Guid
GetGuid(int ordinal)
boolean
getHasRows()
short
GetInt16(int ordinal)
int
GetInt32(int ordinal)
long
GetInt64(int ordinal)
boolean
getIsClosed()
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)
NetType
GetProviderSpecificFieldType(int ordinal)
NetObject
GetProviderSpecificValue(int ordinal)
int
GetProviderSpecificValues(NetObject[] values)
int
getRecordsAffected()
DataTable
GetSchemaTable()
Stream
GetStream(int ordinal)
java.lang.String
GetString(int ordinal)
TextReader
GetTextReader(int ordinal)
NetObject
GetValue(int ordinal)
int
GetValues(NetObject[] values)
int
getVisibleFieldCount()
boolean
IsDBNull(int ordinal)
boolean
NextResult()
boolean
Read()
void
setJCOInstance(JCObject instance)
-
Methods inherited from class system.MarshalByRefObject
GetLifetimeService, InitializeLifetimeService
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Data.Common, Version=8.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.Common.DbDataReader- 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 classMarshalByRefObject
- 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 classMarshalByRefObject
- 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 classMarshalByRefObject
- 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 classMarshalByRefObject
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classMarshalByRefObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classMarshalByRefObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static DbDataReader cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoDbDataReader
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
DbDataReader
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
GetBoolean
public boolean GetBoolean(int ordinal) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
IsDBNull
public boolean IsDBNull(int ordinal) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
NextResult
public boolean NextResult() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Read
public boolean Read() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetByte
public byte GetByte(int ordinal) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetChar
public char GetChar(int ordinal) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetDouble
public double GetDouble(int ordinal) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetInt16
public short GetInt16(int ordinal) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetInt32
public int GetInt32(int ordinal) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetOrdinal
public int GetOrdinal(java.lang.String name) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetProviderSpecificValues
public int GetProviderSpecificValues(NetObject[] values) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetValues
public int GetValues(NetObject[] values) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetBytes
public long GetBytes(int ordinal, long dataOffset, byte[] buffer, int bufferOffset, int length) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetBytes
public long GetBytes(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetChars
public long GetChars(int ordinal, long dataOffset, char[] buffer, int bufferOffset, int length) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetChars
public long GetChars(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetInt64
public long GetInt64(int ordinal) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetFloat
public Single GetFloat(int ordinal) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetData
public DbDataReader GetData(int ordinal) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
GetSchemaTable
public DataTable GetSchemaTable() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
GetDateTime
public DateTime GetDateTime(int ordinal) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetDecimal
public Decimal GetDecimal(int ordinal) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetGuid
public Guid GetGuid(int ordinal) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetStream
public Stream GetStream(int ordinal) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, FormatException, ArrayTypeMismatchException
-
GetTextReader
public TextReader GetTextReader(int ordinal) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
GetProviderSpecificValue
public NetObject GetProviderSpecificValue(int ordinal) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetValue
public NetObject GetValue(int ordinal) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetDataTypeName
public java.lang.String GetDataTypeName(int ordinal) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetName
public java.lang.String GetName(int ordinal) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetString
public java.lang.String GetString(int ordinal) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
CloseAsync
public Task CloseAsync() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException
-
DisposeAsync
public ValueTask DisposeAsync() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetFieldType
public NetType GetFieldType(int ordinal) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
GetProviderSpecificFieldType
public NetType GetProviderSpecificFieldType(int ordinal) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Close
public void Close() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Dispose
public void Dispose() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
close
public void close() throws java.lang.Exception
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Throws:
java.lang.Exception
-
getHasRows
public boolean getHasRows() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getIsClosed
public boolean getIsClosed() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getDepth
public int getDepth() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getFieldCount
public int getFieldCount() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getRecordsAffected
public int getRecordsAffected() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getVisibleFieldCount
public int getVisibleFieldCount() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-