Package microsoft.sqlserver.server
Class SqlDataRecord
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- microsoft.sqlserver.server.SqlDataRecord
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class SqlDataRecord extends NetObject
The base .NET class managing Microsoft.SqlServer.Server.SqlDataRecord, System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/Microsoft.SqlServer.Server.SqlDataRecord
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: Microsoft.SqlServer.Server.SqlDataRecordstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description SqlDataRecord()
SqlDataRecord(java.lang.Object instance)
Internal constructor.SqlDataRecord(SqlMetaData... metaData)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SqlDataRecord
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoSqlDataRecord
, a cast assert is made to check if types are compatible.boolean
GetBoolean(int ordinal)
byte
GetByte(int ordinal)
long
GetBytes(int ordinal, long fieldOffset, 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 fieldOffset, char[] buffer, int bufferOffset, int length)
long
GetChars(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4)
java.lang.String
GetDataTypeName(int ordinal)
DateTime
GetDateTime(int ordinal)
DateTimeOffset
GetDateTimeOffset(int ordinal)
Decimal
GetDecimal(int ordinal)
double
GetDouble(int ordinal)
int
getFieldCount()
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)
SqlBinary
GetSqlBinary(int ordinal)
SqlBoolean
GetSqlBoolean(int ordinal)
SqlByte
GetSqlByte(int ordinal)
SqlBytes
GetSqlBytes(int ordinal)
SqlChars
GetSqlChars(int ordinal)
SqlDateTime
GetSqlDateTime(int ordinal)
SqlDecimal
GetSqlDecimal(int ordinal)
SqlDouble
GetSqlDouble(int ordinal)
NetType
GetSqlFieldType(int ordinal)
SqlGuid
GetSqlGuid(int ordinal)
SqlInt16
GetSqlInt16(int ordinal)
SqlInt32
GetSqlInt32(int ordinal)
SqlInt64
GetSqlInt64(int ordinal)
SqlMetaData
GetSqlMetaData(int ordinal)
SqlMoney
GetSqlMoney(int ordinal)
SqlSingle
GetSqlSingle(int ordinal)
SqlString
GetSqlString(int ordinal)
NetObject
GetSqlValue(int ordinal)
int
GetSqlValues(NetObject[] values)
SqlXml
GetSqlXml(int ordinal)
java.lang.String
GetString(int ordinal)
TimeSpan
GetTimeSpan(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
SetBytes(int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length)
void
SetBytes(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4)
void
SetChar(int ordinal, char value)
void
SetChars(int ordinal, long fieldOffset, char[] buffer, int bufferOffset, int length)
void
SetChars(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4)
void
SetDateTime(int ordinal, DateTime value)
void
SetDateTimeOffset(int ordinal, DateTimeOffset 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
SetSqlBinary(int ordinal, SqlBinary value)
void
SetSqlBoolean(int ordinal, SqlBoolean value)
void
SetSqlByte(int ordinal, SqlByte value)
void
SetSqlBytes(int ordinal, SqlBytes value)
void
SetSqlChars(int ordinal, SqlChars value)
void
SetSqlDateTime(int ordinal, SqlDateTime value)
void
SetSqlDecimal(int ordinal, SqlDecimal value)
void
SetSqlDouble(int ordinal, SqlDouble value)
void
SetSqlGuid(int ordinal, SqlGuid value)
void
SetSqlInt16(int ordinal, SqlInt16 value)
void
SetSqlInt32(int ordinal, SqlInt32 value)
void
SetSqlInt64(int ordinal, SqlInt64 value)
void
SetSqlMoney(int ordinal, SqlMoney value)
void
SetSqlSingle(int ordinal, SqlSingle value)
void
SetSqlString(int ordinal, SqlString value)
void
SetSqlXml(int ordinal, SqlXml value)
void
SetString(int ordinal, java.lang.String value)
void
SetTimeSpan(int ordinal, TimeSpan value)
void
SetValue(int ordinal, NetObject value)
int
SetValues(NetObject... values)
-
-
-
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: Microsoft.SqlServer.Server.SqlDataRecord- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SqlDataRecord
public SqlDataRecord(java.lang.Object instance) throws java.lang.Throwable
Internal constructor. Use with caution- Throws:
java.lang.Throwable
-
SqlDataRecord
public SqlDataRecord() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
SqlDataRecord
public SqlDataRecord(SqlMetaData... metaData) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, CultureNotFoundException, ArgumentOutOfRangeException, TypeInitializationException, OutOfMemoryException, InvalidUdtException, SqlException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
CultureNotFoundException
ArgumentOutOfRangeException
TypeInitializationException
OutOfMemoryException
InvalidUdtException
SqlException
-
-
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 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 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 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 interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classNetObject
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classNetObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static SqlDataRecord cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoSqlDataRecord
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
SqlDataRecord
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
GetBoolean
public boolean GetBoolean(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlNullValueException, OverflowException, XmlException, TargetInvocationException, NotSupportedException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlNullValueException
OverflowException
XmlException
TargetInvocationException
NotSupportedException
InvalidUdtException
InvalidCastException
-
IsDBNull
public boolean IsDBNull(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException
-
GetByte
public byte GetByte(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlNullValueException, OverflowException, XmlException, TargetInvocationException, NotSupportedException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlNullValueException
OverflowException
XmlException
TargetInvocationException
NotSupportedException
InvalidUdtException
InvalidCastException
-
GetChar
public char GetChar(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException
-
GetDouble
public double GetDouble(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlNullValueException, OverflowException, XmlException, TargetInvocationException, NotSupportedException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlNullValueException
OverflowException
XmlException
TargetInvocationException
NotSupportedException
InvalidUdtException
InvalidCastException
-
GetInt16
public short GetInt16(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlNullValueException, OverflowException, XmlException, TargetInvocationException, NotSupportedException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlNullValueException
OverflowException
XmlException
TargetInvocationException
NotSupportedException
InvalidUdtException
InvalidCastException
-
GetInt32
public int GetInt32(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlNullValueException, OverflowException, XmlException, TargetInvocationException, NotSupportedException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlNullValueException
OverflowException
XmlException
TargetInvocationException
NotSupportedException
InvalidUdtException
InvalidCastException
-
GetOrdinal
public int GetOrdinal(java.lang.String name) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException
-
GetSqlValues
public int GetSqlValues(NetObject[] values) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlTypeException, OverflowException, InvalidUdtException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlTypeException
OverflowException
InvalidUdtException
-
GetValues
public int GetValues(NetObject[] values) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlNullValueException, OverflowException, XmlException, TargetInvocationException, NotSupportedException, InvalidUdtException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlNullValueException
OverflowException
XmlException
TargetInvocationException
NotSupportedException
InvalidUdtException
-
SetValues
public int SetValues(NetObject... values) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlException, SqlTypeException, OverflowException, SqlNullValueException, SqlTruncateException, DivideByZeroException, XmlException, NotSupportedException, InvalidUdtException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
InvalidCastException
SqlException
SqlTypeException
OverflowException
SqlNullValueException
SqlTruncateException
DivideByZeroException
XmlException
NotSupportedException
InvalidUdtException
-
GetBytes
public long GetBytes(int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlNullValueException, SqlTypeException, OverflowException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlNullValueException
SqlTypeException
OverflowException
InvalidUdtException
InvalidCastException
-
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, SqlException, SqlNullValueException, SqlTypeException, OverflowException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlNullValueException
SqlTypeException
OverflowException
InvalidUdtException
InvalidCastException
-
GetChars
public long GetChars(int ordinal, long fieldOffset, char[] buffer, int bufferOffset, int length) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlNullValueException, OverflowException, XmlException, TargetInvocationException, NotSupportedException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlNullValueException
OverflowException
XmlException
TargetInvocationException
NotSupportedException
InvalidUdtException
InvalidCastException
-
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, SqlException, SqlNullValueException, OverflowException, XmlException, TargetInvocationException, NotSupportedException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlNullValueException
OverflowException
XmlException
TargetInvocationException
NotSupportedException
InvalidUdtException
InvalidCastException
-
GetInt64
public long GetInt64(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlNullValueException, OverflowException, XmlException, TargetInvocationException, NotSupportedException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlNullValueException
OverflowException
XmlException
TargetInvocationException
NotSupportedException
InvalidUdtException
InvalidCastException
-
GetSqlMetaData
public SqlMetaData GetSqlMetaData(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
-
GetFloat
public Single GetFloat(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlNullValueException, OverflowException, XmlException, TargetInvocationException, NotSupportedException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlNullValueException
OverflowException
XmlException
TargetInvocationException
NotSupportedException
InvalidUdtException
InvalidCastException
-
GetSqlBinary
public SqlBinary GetSqlBinary(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlTypeException, OverflowException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlTypeException
OverflowException
InvalidUdtException
InvalidCastException
-
GetSqlBoolean
public SqlBoolean GetSqlBoolean(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlTypeException, OverflowException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlTypeException
OverflowException
InvalidUdtException
InvalidCastException
-
GetSqlByte
public SqlByte GetSqlByte(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlTypeException, OverflowException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlTypeException
OverflowException
InvalidUdtException
InvalidCastException
-
GetSqlBytes
public SqlBytes GetSqlBytes(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlTypeException, OverflowException, InvalidUdtException, InvalidCastException, SqlNullValueException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlTypeException
OverflowException
InvalidUdtException
InvalidCastException
SqlNullValueException
-
GetSqlChars
public SqlChars GetSqlChars(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlNullValueException, XmlException, TargetInvocationException, NotSupportedException, SqlTypeException, OverflowException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlNullValueException
XmlException
TargetInvocationException
NotSupportedException
SqlTypeException
OverflowException
InvalidUdtException
InvalidCastException
-
GetSqlDateTime
public SqlDateTime GetSqlDateTime(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlTypeException, OverflowException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlTypeException
OverflowException
InvalidUdtException
InvalidCastException
-
GetSqlDecimal
public SqlDecimal GetSqlDecimal(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlTypeException, OverflowException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlTypeException
OverflowException
InvalidUdtException
InvalidCastException
-
GetSqlDouble
public SqlDouble GetSqlDouble(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, OverflowException, SqlTypeException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
OverflowException
SqlTypeException
InvalidUdtException
InvalidCastException
-
GetSqlGuid
public SqlGuid GetSqlGuid(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlTypeException, OverflowException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlTypeException
OverflowException
InvalidUdtException
InvalidCastException
-
GetSqlInt16
public SqlInt16 GetSqlInt16(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlTypeException, OverflowException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlTypeException
OverflowException
InvalidUdtException
InvalidCastException
-
GetSqlInt32
public SqlInt32 GetSqlInt32(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlTypeException, OverflowException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlTypeException
OverflowException
InvalidUdtException
InvalidCastException
-
GetSqlInt64
public SqlInt64 GetSqlInt64(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlTypeException, OverflowException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlTypeException
OverflowException
InvalidUdtException
InvalidCastException
-
GetSqlMoney
public SqlMoney GetSqlMoney(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlTypeException, OverflowException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlTypeException
OverflowException
InvalidUdtException
InvalidCastException
-
GetSqlSingle
public SqlSingle GetSqlSingle(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, OverflowException, SqlTypeException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
OverflowException
SqlTypeException
InvalidUdtException
InvalidCastException
-
GetSqlString
public SqlString GetSqlString(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlNullValueException, XmlException, TargetInvocationException, NotSupportedException, SqlTypeException, OverflowException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlNullValueException
XmlException
TargetInvocationException
NotSupportedException
SqlTypeException
OverflowException
InvalidUdtException
InvalidCastException
-
GetSqlXml
public SqlXml GetSqlXml(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlTypeException, OverflowException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlTypeException
OverflowException
InvalidUdtException
InvalidCastException
-
GetDateTime
public DateTime GetDateTime(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlNullValueException, OverflowException, XmlException, TargetInvocationException, NotSupportedException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlNullValueException
OverflowException
XmlException
TargetInvocationException
NotSupportedException
InvalidUdtException
InvalidCastException
-
GetDateTimeOffset
public DateTimeOffset GetDateTimeOffset(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlNullValueException, OverflowException, XmlException, TargetInvocationException, NotSupportedException, InvalidUdtException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlNullValueException
OverflowException
XmlException
TargetInvocationException
NotSupportedException
InvalidUdtException
-
GetDecimal
public Decimal GetDecimal(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlNullValueException, OverflowException, XmlException, TargetInvocationException, NotSupportedException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlNullValueException
OverflowException
XmlException
TargetInvocationException
NotSupportedException
InvalidUdtException
InvalidCastException
-
GetGuid
public Guid GetGuid(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlNullValueException, OverflowException, XmlException, TargetInvocationException, NotSupportedException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlNullValueException
OverflowException
XmlException
TargetInvocationException
NotSupportedException
InvalidUdtException
InvalidCastException
-
GetSqlValue
public NetObject GetSqlValue(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlTypeException, OverflowException, InvalidUdtException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlTypeException
OverflowException
InvalidUdtException
-
GetValue
public NetObject GetValue(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlNullValueException, OverflowException, XmlException, TargetInvocationException, NotSupportedException, InvalidUdtException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlNullValueException
OverflowException
XmlException
TargetInvocationException
NotSupportedException
InvalidUdtException
-
GetDataTypeName
public java.lang.String GetDataTypeName(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
-
GetName
public java.lang.String GetName(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
-
GetString
public java.lang.String GetString(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlNullValueException, OverflowException, XmlException, TargetInvocationException, NotSupportedException, InvalidUdtException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlNullValueException
OverflowException
XmlException
TargetInvocationException
NotSupportedException
InvalidUdtException
InvalidCastException
-
GetTimeSpan
public TimeSpan GetTimeSpan(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException, SqlNullValueException, OverflowException, XmlException, TargetInvocationException, NotSupportedException, InvalidUdtException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SqlException
SqlNullValueException
OverflowException
XmlException
TargetInvocationException
NotSupportedException
InvalidUdtException
-
GetFieldType
public NetType GetFieldType(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
-
GetSqlFieldType
public NetType GetSqlFieldType(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
-
SetBoolean
public void SetBoolean(int ordinal, boolean value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlException
-
SetByte
public void SetByte(int ordinal, byte value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlException
-
SetBytes
public void SetBytes(int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlException
-
SetBytes
public void SetBytes(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlException
-
SetChar
public void SetChar(int ordinal, char value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException
-
SetChars
public void SetChars(int ordinal, long fieldOffset, char[] buffer, int bufferOffset, int length) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlException
-
SetChars
public void SetChars(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlException
-
SetDateTime
public void SetDateTime(int ordinal, DateTime value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlException
-
SetDateTimeOffset
public void SetDateTimeOffset(int ordinal, DateTimeOffset value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlException
-
SetDBNull
public void SetDBNull(int ordinal) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SqlException
-
SetDecimal
public void SetDecimal(int ordinal, Decimal value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlException, SqlNullValueException, SqlTruncateException, OverflowException, DivideByZeroException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
InvalidCastException
SqlException
SqlNullValueException
SqlTruncateException
OverflowException
DivideByZeroException
-
SetDouble
public void SetDouble(int ordinal, double value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlException
-
SetFloat
public void SetFloat(int ordinal, Single value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlException
-
SetGuid
public void SetGuid(int ordinal, Guid value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlException
-
SetInt16
public void SetInt16(int ordinal, short value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlException
-
SetInt32
public void SetInt32(int ordinal, int value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlException
-
SetInt64
public void SetInt64(int ordinal, long value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlException
-
SetSqlBinary
public void SetSqlBinary(int ordinal, SqlBinary value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlNullValueException, SqlException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
InvalidCastException
SqlNullValueException
SqlException
-
SetSqlBoolean
public void SetSqlBoolean(int ordinal, SqlBoolean value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlNullValueException, SqlException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
InvalidCastException
SqlNullValueException
SqlException
-
SetSqlByte
public void SetSqlByte(int ordinal, SqlByte value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlNullValueException, SqlException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
InvalidCastException
SqlNullValueException
SqlException
-
SetSqlBytes
public void SetSqlBytes(int ordinal, SqlBytes value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlNullValueException, SqlException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
InvalidCastException
SqlNullValueException
SqlException
-
SetSqlChars
public void SetSqlChars(int ordinal, SqlChars value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlNullValueException, SqlException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
InvalidCastException
SqlNullValueException
SqlException
-
SetSqlDateTime
public void SetSqlDateTime(int ordinal, SqlDateTime value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlNullValueException, SqlException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
InvalidCastException
SqlNullValueException
SqlException
-
SetSqlDecimal
public void SetSqlDecimal(int ordinal, SqlDecimal value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlException
-
SetSqlDouble
public void SetSqlDouble(int ordinal, SqlDouble value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlNullValueException, SqlException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
InvalidCastException
SqlNullValueException
SqlException
-
SetSqlGuid
public void SetSqlGuid(int ordinal, SqlGuid value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlNullValueException, SqlException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
InvalidCastException
SqlNullValueException
SqlException
-
SetSqlInt16
public void SetSqlInt16(int ordinal, SqlInt16 value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlNullValueException, SqlException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
InvalidCastException
SqlNullValueException
SqlException
-
SetSqlInt32
public void SetSqlInt32(int ordinal, SqlInt32 value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlNullValueException, SqlException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
InvalidCastException
SqlNullValueException
SqlException
-
SetSqlInt64
public void SetSqlInt64(int ordinal, SqlInt64 value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlNullValueException, SqlException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
InvalidCastException
SqlNullValueException
SqlException
-
SetSqlMoney
public void SetSqlMoney(int ordinal, SqlMoney value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlNullValueException, SqlException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
InvalidCastException
SqlNullValueException
SqlException
-
SetSqlSingle
public void SetSqlSingle(int ordinal, SqlSingle value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlNullValueException, SqlException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
InvalidCastException
SqlNullValueException
SqlException
-
SetSqlString
public void SetSqlString(int ordinal, SqlString value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlException, SqlNullValueException, InvalidUdtException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
InvalidCastException
SqlException
SqlNullValueException
InvalidUdtException
-
SetSqlXml
public void SetSqlXml(int ordinal, SqlXml value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlException, SqlNullValueException, TargetInvocationException, XmlException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
InvalidCastException
SqlException
SqlNullValueException
TargetInvocationException
XmlException
NotSupportedException
-
SetString
public void SetString(int ordinal, java.lang.String value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlException
-
SetTimeSpan
public void SetTimeSpan(int ordinal, TimeSpan value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlException
-
SetValue
public void SetValue(int ordinal, NetObject value) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, InvalidCastException, SqlException, SqlTypeException, OverflowException, SqlNullValueException, SqlTruncateException, DivideByZeroException, XmlException, NotSupportedException, InvalidUdtException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
InvalidCastException
SqlException
SqlTypeException
OverflowException
SqlNullValueException
SqlTruncateException
DivideByZeroException
XmlException
NotSupportedException
InvalidUdtException
-
getFieldCount
public int getFieldCount() throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
-
-