Package system.data.sqlclient
Class SqlDataReader
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.MarshalByRefObject
-
- system.data.common.DbDataReader
-
- system.data.sqlclient.SqlDataReader
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,IJCOBridgeReflected
public class SqlDataReader extends DbDataReader
The base .NET class managing System.Data.SqlClient.SqlDataReader, System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Data.SqlClient.SqlDataReader
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.SqlClient.SqlDataReaderstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description SqlDataReader()
SqlDataReader(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SqlDataReader
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoSqlDataReader
, a cast assert is made to check if types are compatible.void
Close()
boolean
GetBoolean(int i)
byte
GetByte(int i)
long
GetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length)
long
GetBytes(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4)
char
GetChar(int i)
long
GetChars(int i, long dataIndex, char[] buffer, int bufferIndex, int length)
long
GetChars(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4)
java.lang.String
GetDataTypeName(int i)
DateTime
GetDateTime(int i)
DateTimeOffset
GetDateTimeOffset(int i)
Decimal
GetDecimal(int i)
double
GetDouble(int i)
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)
NetType
GetProviderSpecificFieldType(int i)
NetObject
GetProviderSpecificValue(int i)
int
GetProviderSpecificValues(NetObject[] values)
DataTable
GetSchemaTable()
SqlBinary
GetSqlBinary(int i)
SqlBoolean
GetSqlBoolean(int i)
SqlByte
GetSqlByte(int i)
SqlBytes
GetSqlBytes(int i)
SqlChars
GetSqlChars(int i)
SqlDateTime
GetSqlDateTime(int i)
SqlDecimal
GetSqlDecimal(int i)
SqlDouble
GetSqlDouble(int i)
SqlGuid
GetSqlGuid(int i)
SqlInt16
GetSqlInt16(int i)
SqlInt32
GetSqlInt32(int i)
SqlInt64
GetSqlInt64(int i)
SqlMoney
GetSqlMoney(int i)
SqlSingle
GetSqlSingle(int i)
SqlString
GetSqlString(int i)
NetObject
GetSqlValue(int i)
int
GetSqlValues(NetObject[] values)
SqlXml
GetSqlXml(int i)
Stream
GetStream(int i)
java.lang.String
GetString(int i)
TextReader
GetTextReader(int i)
TimeSpan
GetTimeSpan(int i)
NetObject
GetValue(int i)
int
GetValues(NetObject[] values)
XmlReader
GetXmlReader(int i)
boolean
IsDBNull(int i)
boolean
NextResult()
boolean
Read()
void
setJCOInstance(JCObject instance)
-
Methods inherited from class system.data.common.DbDataReader
close, Dispose, GetData, getDepth, getFieldCount, getHasRows, getIsClosed, getRecordsAffected, 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.SqlClient.SqlDataReader- 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 SqlDataReader cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoSqlDataReader
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
SqlDataReader
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
GetBoolean
public boolean GetBoolean(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, SqlTypeException, XmlException, TargetInvocationException
- Overrides:
GetBoolean
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
SqlNullValueException
OverflowException
SqlTypeException
XmlException
TargetInvocationException
-
IsDBNull
public boolean IsDBNull(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, FormatException, OverflowException, OutOfMemoryException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SqlException, SqlTypeException, SqlNullValueException, SqlTruncateException, TypeLoadException, AggregateException, NullReferenceException
- Overrides:
IsDBNull
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
FormatException
OverflowException
OutOfMemoryException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
SqlException
SqlTypeException
SqlNullValueException
SqlTruncateException
TypeLoadException
AggregateException
NullReferenceException
-
NextResult
public boolean NextResult() throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, AggregateException, NotSupportedException, FormatException, OverflowException, OutOfMemoryException, WaitHandleCannotBeOpenedException, SqlException, SqlTypeException, SqlNullValueException, SqlTruncateException, FileNotFoundException, TypeLoadException, InvalidUdtException
- Overrides:
NextResult
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
AggregateException
NotSupportedException
FormatException
OverflowException
OutOfMemoryException
WaitHandleCannotBeOpenedException
SqlException
SqlTypeException
SqlNullValueException
SqlTruncateException
FileNotFoundException
TypeLoadException
InvalidUdtException
-
Read
public boolean Read() throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, TaskSchedulerException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SqlException, FormatException, AggregateException, NotSupportedException, OverflowException, OutOfMemoryException, IndexOutOfRangeException, WaitHandleCannotBeOpenedException, SqlTypeException, SqlNullValueException, SqlTruncateException, TypeLoadException, InvalidUdtException
- Overrides:
Read
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
TaskSchedulerException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
SqlException
FormatException
AggregateException
NotSupportedException
OverflowException
OutOfMemoryException
IndexOutOfRangeException
WaitHandleCannotBeOpenedException
SqlTypeException
SqlNullValueException
SqlTruncateException
TypeLoadException
InvalidUdtException
-
GetByte
public byte GetByte(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, SqlTypeException, XmlException, TargetInvocationException
- Overrides:
GetByte
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
SqlNullValueException
OverflowException
SqlTypeException
XmlException
TargetInvocationException
-
GetChar
public char GetChar(int i) throws java.lang.Throwable, NotSupportedException
- Overrides:
GetChar
in classDbDataReader
- Throws:
java.lang.Throwable
NotSupportedException
-
GetDouble
public double GetDouble(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, SqlTypeException, XmlException, TargetInvocationException
- Overrides:
GetDouble
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
SqlNullValueException
OverflowException
SqlTypeException
XmlException
TargetInvocationException
-
GetInt16
public short GetInt16(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, SqlTypeException, XmlException, TargetInvocationException
- Overrides:
GetInt16
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
SqlNullValueException
OverflowException
SqlTypeException
XmlException
TargetInvocationException
-
GetInt32
public int GetInt32(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, SqlTypeException, XmlException, TargetInvocationException
- Overrides:
GetInt32
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
SqlNullValueException
OverflowException
SqlTypeException
XmlException
TargetInvocationException
-
GetOrdinal
public int GetOrdinal(java.lang.String name) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, FormatException, OutOfMemoryException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SqlException, SqlTypeException, SqlNullValueException, SqlTruncateException, TypeLoadException
- Overrides:
GetOrdinal
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
OverflowException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
FormatException
OutOfMemoryException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
SqlException
SqlTypeException
SqlNullValueException
SqlTruncateException
TypeLoadException
-
GetProviderSpecificValues
public int GetProviderSpecificValues(NetObject[] values) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, FormatException, IndexOutOfRangeException, SqlNullValueException, OverflowException, NotSupportedException, FileNotFoundException, TypeLoadException, AccessViolationException, InvalidUdtException
- Overrides:
GetProviderSpecificValues
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
FormatException
IndexOutOfRangeException
SqlNullValueException
OverflowException
NotSupportedException
FileNotFoundException
TypeLoadException
AccessViolationException
InvalidUdtException
-
GetSqlValues
public int GetSqlValues(NetObject[] values) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, XmlException, TargetInvocationException, FormatException, FileNotFoundException, TypeLoadException, AccessViolationException, InvalidUdtException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
OverflowException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
SqlNullValueException
XmlException
TargetInvocationException
FormatException
FileNotFoundException
TypeLoadException
AccessViolationException
InvalidUdtException
-
GetValues
public int GetValues(NetObject[] values) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, FormatException, OutOfMemoryException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SqlException, SqlTypeException, SqlNullValueException, SqlTruncateException, TypeLoadException, AggregateException, NullReferenceException
- Overrides:
GetValues
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
OverflowException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
FormatException
OutOfMemoryException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
SqlException
SqlTypeException
SqlNullValueException
SqlTruncateException
TypeLoadException
AggregateException
NullReferenceException
-
GetBytes
public long GetBytes(int i, long dataIndex, byte[] buffer, int bufferIndex, int length) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, OverflowException, SqlNullValueException, SqlTypeException, FormatException
- Overrides:
GetBytes
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
OverflowException
SqlNullValueException
SqlTypeException
FormatException
-
GetBytes
public long GetBytes(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, OverflowException, SqlNullValueException, SqlTypeException, FormatException
- Overrides:
GetBytes
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
OverflowException
SqlNullValueException
SqlTypeException
FormatException
-
GetChars
public long GetChars(int i, long dataIndex, char[] buffer, int bufferIndex, int length) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, FormatException, OverflowException, OutOfMemoryException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SqlException, SqlTypeException, SqlNullValueException, SqlTruncateException, TypeLoadException, TargetInvocationException, XmlException
- Overrides:
GetChars
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
FormatException
OverflowException
OutOfMemoryException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
SqlException
SqlTypeException
SqlNullValueException
SqlTruncateException
TypeLoadException
TargetInvocationException
XmlException
-
GetChars
public long GetChars(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, FormatException, OverflowException, OutOfMemoryException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SqlException, SqlTypeException, SqlNullValueException, SqlTruncateException, TypeLoadException, TargetInvocationException, XmlException
- Overrides:
GetChars
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
FormatException
OverflowException
OutOfMemoryException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
SqlException
SqlTypeException
SqlNullValueException
SqlTruncateException
TypeLoadException
TargetInvocationException
XmlException
-
GetInt64
public long GetInt64(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, SqlTypeException, XmlException, TargetInvocationException
- Overrides:
GetInt64
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
SqlNullValueException
OverflowException
SqlTypeException
XmlException
TargetInvocationException
-
GetFloat
public Single GetFloat(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, SqlTypeException, XmlException, TargetInvocationException
- Overrides:
GetFloat
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
SqlNullValueException
OverflowException
SqlTypeException
XmlException
TargetInvocationException
-
GetSchemaTable
public DataTable GetSchemaTable() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, FormatException, OutOfMemoryException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SqlException, TaskSchedulerException, SqlTypeException, SqlNullValueException, SqlTruncateException, TypeLoadException, InvalidUdtException, NullReferenceException, ConfigurationErrorsException, DataException, InvalidCastException, KeyNotFoundException
- Overrides:
GetSchemaTable
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
OverflowException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
FormatException
OutOfMemoryException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
SqlException
TaskSchedulerException
SqlTypeException
SqlNullValueException
SqlTruncateException
TypeLoadException
InvalidUdtException
NullReferenceException
ConfigurationErrorsException
DataException
InvalidCastException
KeyNotFoundException
-
GetSqlBinary
public SqlBinary GetSqlBinary(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
OverflowException
SqlTypeException
SqlNullValueException
XmlException
TargetInvocationException
-
GetSqlBoolean
public SqlBoolean GetSqlBoolean(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
OverflowException
SqlTypeException
SqlNullValueException
XmlException
TargetInvocationException
-
GetSqlByte
public SqlByte GetSqlByte(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
OverflowException
SqlTypeException
SqlNullValueException
XmlException
TargetInvocationException
-
GetSqlBytes
public SqlBytes GetSqlBytes(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
OverflowException
SqlTypeException
SqlNullValueException
XmlException
TargetInvocationException
-
GetSqlChars
public SqlChars GetSqlChars(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, XmlException, TargetInvocationException, FormatException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
SqlNullValueException
OverflowException
XmlException
TargetInvocationException
FormatException
-
GetSqlDateTime
public SqlDateTime GetSqlDateTime(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
OverflowException
SqlTypeException
SqlNullValueException
XmlException
TargetInvocationException
-
GetSqlDecimal
public SqlDecimal GetSqlDecimal(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlTypeException, OverflowException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
SqlTypeException
OverflowException
SqlNullValueException
XmlException
TargetInvocationException
-
GetSqlDouble
public SqlDouble GetSqlDouble(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
OverflowException
SqlTypeException
SqlNullValueException
XmlException
TargetInvocationException
-
GetSqlGuid
public SqlGuid GetSqlGuid(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
OverflowException
SqlTypeException
SqlNullValueException
XmlException
TargetInvocationException
-
GetSqlInt16
public SqlInt16 GetSqlInt16(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
OverflowException
SqlTypeException
SqlNullValueException
XmlException
TargetInvocationException
-
GetSqlInt32
public SqlInt32 GetSqlInt32(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
OverflowException
SqlTypeException
SqlNullValueException
XmlException
TargetInvocationException
-
GetSqlInt64
public SqlInt64 GetSqlInt64(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
OverflowException
SqlTypeException
SqlNullValueException
XmlException
TargetInvocationException
-
GetSqlMoney
public SqlMoney GetSqlMoney(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
OverflowException
SqlTypeException
SqlNullValueException
XmlException
TargetInvocationException
-
GetSqlSingle
public SqlSingle GetSqlSingle(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
OverflowException
SqlTypeException
SqlNullValueException
XmlException
TargetInvocationException
-
GetSqlString
public SqlString GetSqlString(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, XmlException, TargetInvocationException, FormatException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
SqlNullValueException
OverflowException
XmlException
TargetInvocationException
FormatException
-
GetSqlXml
public SqlXml GetSqlXml(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
OverflowException
SqlTypeException
SqlNullValueException
XmlException
TargetInvocationException
-
GetDateTime
public DateTime GetDateTime(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, SqlTypeException, XmlException, TargetInvocationException
- Overrides:
GetDateTime
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
SqlNullValueException
OverflowException
SqlTypeException
XmlException
TargetInvocationException
-
GetDateTimeOffset
public DateTimeOffset GetDateTimeOffset(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, SqlTypeException, XmlException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
SqlNullValueException
OverflowException
SqlTypeException
XmlException
TargetInvocationException
-
GetDecimal
public Decimal GetDecimal(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, SqlTypeException, XmlException, TargetInvocationException
- Overrides:
GetDecimal
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
SqlNullValueException
OverflowException
SqlTypeException
XmlException
TargetInvocationException
-
GetGuid
public Guid GetGuid(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Overrides:
GetGuid
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
OverflowException
SqlTypeException
SqlNullValueException
XmlException
TargetInvocationException
-
GetStream
public Stream GetStream(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Overrides:
GetStream
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
OverflowException
SqlTypeException
SqlNullValueException
XmlException
TargetInvocationException
-
GetTextReader
public TextReader GetTextReader(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException
- Overrides:
GetTextReader
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
OverflowException
SqlTypeException
SqlNullValueException
XmlException
TargetInvocationException
-
GetProviderSpecificValue
public NetObject GetProviderSpecificValue(int i) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, FormatException, IndexOutOfRangeException, SqlNullValueException, OverflowException, NotSupportedException, FileNotFoundException, TypeLoadException, AccessViolationException, InvalidUdtException
- Overrides:
GetProviderSpecificValue
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
FormatException
IndexOutOfRangeException
SqlNullValueException
OverflowException
NotSupportedException
FileNotFoundException
TypeLoadException
AccessViolationException
InvalidUdtException
-
GetSqlValue
public NetObject GetSqlValue(int i) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, XmlException, TargetInvocationException, FormatException, FileNotFoundException, TypeLoadException, AccessViolationException, InvalidUdtException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
OverflowException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
SqlNullValueException
XmlException
TargetInvocationException
FormatException
FileNotFoundException
TypeLoadException
AccessViolationException
InvalidUdtException
-
GetValue
public NetObject GetValue(int i) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, XmlException, TargetInvocationException, FormatException, FileNotFoundException, TypeLoadException, AccessViolationException, InvalidUdtException
- Overrides:
GetValue
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
OverflowException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
SqlNullValueException
XmlException
TargetInvocationException
FormatException
FileNotFoundException
TypeLoadException
AccessViolationException
InvalidUdtException
-
GetDataTypeName
public java.lang.String GetDataTypeName(int i) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, FormatException, OutOfMemoryException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SqlException, SqlTypeException, SqlNullValueException, SqlTruncateException, TypeLoadException
- Overrides:
GetDataTypeName
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
OverflowException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
FormatException
OutOfMemoryException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
SqlException
SqlTypeException
SqlNullValueException
SqlTruncateException
TypeLoadException
-
GetName
public java.lang.String GetName(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, FormatException, OverflowException, OutOfMemoryException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SqlException, SqlTypeException, SqlNullValueException, SqlTruncateException, TypeLoadException
- Overrides:
GetName
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
FormatException
OverflowException
OutOfMemoryException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
SqlException
SqlTypeException
SqlNullValueException
SqlTruncateException
TypeLoadException
-
GetString
public java.lang.String GetString(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, SqlTypeException, XmlException, TargetInvocationException, FormatException, OutOfMemoryException
- Overrides:
GetString
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
SqlNullValueException
OverflowException
SqlTypeException
XmlException
TargetInvocationException
FormatException
OutOfMemoryException
-
GetTimeSpan
public TimeSpan GetTimeSpan(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, AggregateException, NullReferenceException, SqlNullValueException, OverflowException, SqlTypeException, XmlException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
AggregateException
NullReferenceException
SqlNullValueException
OverflowException
SqlTypeException
XmlException
TargetInvocationException
-
GetFieldType
public NetType GetFieldType(int i) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, FormatException, OutOfMemoryException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SqlException, SqlTypeException, SqlNullValueException, SqlTruncateException, TypeLoadException
- Overrides:
GetFieldType
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
OverflowException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
FormatException
OutOfMemoryException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
SqlException
SqlTypeException
SqlNullValueException
SqlTruncateException
TypeLoadException
-
GetProviderSpecificFieldType
public NetType GetProviderSpecificFieldType(int i) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, FormatException, OutOfMemoryException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SqlException, SqlTypeException, SqlNullValueException, SqlTruncateException, TypeLoadException
- Overrides:
GetProviderSpecificFieldType
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
OverflowException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
FormatException
OutOfMemoryException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
SqlException
SqlTypeException
SqlNullValueException
SqlTruncateException
TypeLoadException
-
GetXmlReader
public XmlReader GetXmlReader(int i) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, TargetInvocationException, NotSupportedException, AggregateException, NullReferenceException, OverflowException, SqlTypeException, SqlNullValueException, XmlException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
TargetInvocationException
NotSupportedException
AggregateException
NullReferenceException
OverflowException
SqlTypeException
SqlNullValueException
XmlException
-
Close
public void Close() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, ObjectDisposedException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, InvalidOperationException, AggregateException, AbandonedMutexException, SecurityException, NullReferenceException, TaskSchedulerException, MissingManifestResourceException, SqlException, CultureNotFoundException, FormatException, OutOfMemoryException, IndexOutOfRangeException, WaitHandleCannotBeOpenedException, SqlTypeException, SqlNullValueException, XmlException, TargetInvocationException, SqlTruncateException, TypeLoadException, NotImplementedException, AccessViolationException, InvalidUdtException, TransactionException, SemaphoreFullException
- Overrides:
Close
in classDbDataReader
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
OverflowException
ObjectDisposedException
NotSupportedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
InvalidOperationException
AggregateException
AbandonedMutexException
SecurityException
NullReferenceException
TaskSchedulerException
MissingManifestResourceException
SqlException
CultureNotFoundException
FormatException
OutOfMemoryException
IndexOutOfRangeException
WaitHandleCannotBeOpenedException
SqlTypeException
SqlNullValueException
XmlException
TargetInvocationException
SqlTruncateException
TypeLoadException
NotImplementedException
AccessViolationException
InvalidUdtException
TransactionException
SemaphoreFullException
-
-