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.StringassemblyFullNameFully assembly qualified name: System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089static java.lang.StringassemblyShortNameAssembly name: System.Datastatic java.lang.StringclassNameQualified class name: Microsoft.SqlServer.Server.SqlDataRecordstatic JCTypeclassTypeThe 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 SqlDataRecordcast(IJCOBridgeReflected from)Try to cast theIJCOBridgeReflectedinstance intoSqlDataRecord, a cast assert is made to check if types are compatible.booleanGetBoolean(int ordinal)byteGetByte(int ordinal)longGetBytes(int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length)longGetBytes(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4)charGetChar(int ordinal)longGetChars(int ordinal, long fieldOffset, char[] buffer, int bufferOffset, int length)longGetChars(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4)java.lang.StringGetDataTypeName(int ordinal)DateTimeGetDateTime(int ordinal)DateTimeOffsetGetDateTimeOffset(int ordinal)DecimalGetDecimal(int ordinal)doubleGetDouble(int ordinal)intgetFieldCount()NetTypeGetFieldType(int ordinal)SingleGetFloat(int ordinal)GuidGetGuid(int ordinal)shortGetInt16(int ordinal)intGetInt32(int ordinal)longGetInt64(int ordinal)java.lang.StringgetJCOAssemblyName()Returns the reflected Assembly namejava.lang.StringgetJCOClassName()Returns the reflected Class namejava.lang.ObjectgetJCOInstance()Returns the instantiated classjava.lang.StringgetJCOObjectName()Returns the reflected Class name used to build the objectJCTypegetJCOType()Returns the instantiated class Typejava.lang.StringGetName(int ordinal)intGetOrdinal(java.lang.String name)SqlBinaryGetSqlBinary(int ordinal)SqlBooleanGetSqlBoolean(int ordinal)SqlByteGetSqlByte(int ordinal)SqlBytesGetSqlBytes(int ordinal)SqlCharsGetSqlChars(int ordinal)SqlDateTimeGetSqlDateTime(int ordinal)SqlDecimalGetSqlDecimal(int ordinal)SqlDoubleGetSqlDouble(int ordinal)NetTypeGetSqlFieldType(int ordinal)SqlGuidGetSqlGuid(int ordinal)SqlInt16GetSqlInt16(int ordinal)SqlInt32GetSqlInt32(int ordinal)SqlInt64GetSqlInt64(int ordinal)SqlMetaDataGetSqlMetaData(int ordinal)SqlMoneyGetSqlMoney(int ordinal)SqlSingleGetSqlSingle(int ordinal)SqlStringGetSqlString(int ordinal)NetObjectGetSqlValue(int ordinal)intGetSqlValues(NetObject[] values)SqlXmlGetSqlXml(int ordinal)java.lang.StringGetString(int ordinal)TimeSpanGetTimeSpan(int ordinal)NetObjectGetValue(int ordinal)intGetValues(NetObject[] values)booleanIsDBNull(int ordinal)voidSetBoolean(int ordinal, boolean value)voidSetByte(int ordinal, byte value)voidSetBytes(int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length)voidSetBytes(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4)voidSetChar(int ordinal, char value)voidSetChars(int ordinal, long fieldOffset, char[] buffer, int bufferOffset, int length)voidSetChars(int dupParam0, long dupParam1, JCORefOut dupParam2, int dupParam3, int dupParam4)voidSetDateTime(int ordinal, DateTime value)voidSetDateTimeOffset(int ordinal, DateTimeOffset value)voidSetDBNull(int ordinal)voidSetDecimal(int ordinal, Decimal value)voidSetDouble(int ordinal, double value)voidSetFloat(int ordinal, Single value)voidSetGuid(int ordinal, Guid value)voidSetInt16(int ordinal, short value)voidSetInt32(int ordinal, int value)voidSetInt64(int ordinal, long value)voidsetJCOInstance(JCObject instance)voidSetSqlBinary(int ordinal, SqlBinary value)voidSetSqlBoolean(int ordinal, SqlBoolean value)voidSetSqlByte(int ordinal, SqlByte value)voidSetSqlBytes(int ordinal, SqlBytes value)voidSetSqlChars(int ordinal, SqlChars value)voidSetSqlDateTime(int ordinal, SqlDateTime value)voidSetSqlDecimal(int ordinal, SqlDecimal value)voidSetSqlDouble(int ordinal, SqlDouble value)voidSetSqlGuid(int ordinal, SqlGuid value)voidSetSqlInt16(int ordinal, SqlInt16 value)voidSetSqlInt32(int ordinal, SqlInt32 value)voidSetSqlInt64(int ordinal, SqlInt64 value)voidSetSqlMoney(int ordinal, SqlMoney value)voidSetSqlSingle(int ordinal, SqlSingle value)voidSetSqlString(int ordinal, SqlString value)voidSetSqlXml(int ordinal, SqlXml value)voidSetString(int ordinal, java.lang.String value)voidSetTimeSpan(int ordinal, TimeSpan value)voidSetValue(int ordinal, NetObject value)intSetValues(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.ThrowableInternal 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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionCultureNotFoundExceptionArgumentOutOfRangeExceptionTypeInitializationExceptionOutOfMemoryExceptionInvalidUdtExceptionSqlException
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Assembly name- Specified by:
getJCOAssemblyNamein interfaceIJCOBridgeReflected- Overrides:
getJCOAssemblyNamein classNetObject- Returns:
- A
Stringrepresenting the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name- Specified by:
getJCOClassNamein interfaceIJCOBridgeReflected- Overrides:
getJCOClassNamein classNetObject- Returns:
- A
Stringrepresenting the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name used to build the object- Specified by:
getJCOObjectNamein interfaceIJCOBridgeReflected- Overrides:
getJCOObjectNamein classNetObject- Returns:
- A
Stringrepresenting the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class- Specified by:
getJCOInstancein interfaceIJCOBridgeReflected- Overrides:
getJCOInstancein classNetObject- Returns:
- An
Objectrepresenting the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstancein classNetObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class Type- Specified by:
getJCOTypein interfaceIJCOBridgeReflected- Overrides:
getJCOTypein classNetObject- Returns:
- A
JCTyperepresenting the CLR Type of the instantiated Class
-
cast
public static SqlDataRecord cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflectedinstance intoSqlDataRecord, a cast assert is made to check if types are compatible.- Parameters:
from-IJCOBridgeReflectedinstance to be casted- Returns:
SqlDataRecordinstance- 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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlNullValueExceptionOverflowExceptionXmlExceptionTargetInvocationExceptionNotSupportedExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlNullValueExceptionOverflowExceptionXmlExceptionTargetInvocationExceptionNotSupportedExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlNullValueExceptionOverflowExceptionXmlExceptionTargetInvocationExceptionNotSupportedExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlNullValueExceptionOverflowExceptionXmlExceptionTargetInvocationExceptionNotSupportedExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlNullValueExceptionOverflowExceptionXmlExceptionTargetInvocationExceptionNotSupportedExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlTypeExceptionOverflowExceptionInvalidUdtException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlNullValueExceptionOverflowExceptionXmlExceptionTargetInvocationExceptionNotSupportedExceptionInvalidUdtException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionInvalidCastExceptionSqlExceptionSqlTypeExceptionOverflowExceptionSqlNullValueExceptionSqlTruncateExceptionDivideByZeroExceptionXmlExceptionNotSupportedExceptionInvalidUdtException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlNullValueExceptionSqlTypeExceptionOverflowExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlNullValueExceptionSqlTypeExceptionOverflowExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlNullValueExceptionOverflowExceptionXmlExceptionTargetInvocationExceptionNotSupportedExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlNullValueExceptionOverflowExceptionXmlExceptionTargetInvocationExceptionNotSupportedExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlNullValueExceptionOverflowExceptionXmlExceptionTargetInvocationExceptionNotSupportedExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlNullValueExceptionOverflowExceptionXmlExceptionTargetInvocationExceptionNotSupportedExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlTypeExceptionOverflowExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlTypeExceptionOverflowExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlTypeExceptionOverflowExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlTypeExceptionOverflowExceptionInvalidUdtExceptionInvalidCastExceptionSqlNullValueException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlNullValueExceptionXmlExceptionTargetInvocationExceptionNotSupportedExceptionSqlTypeExceptionOverflowExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlTypeExceptionOverflowExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlTypeExceptionOverflowExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionOverflowExceptionSqlTypeExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlTypeExceptionOverflowExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlTypeExceptionOverflowExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlTypeExceptionOverflowExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlTypeExceptionOverflowExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlTypeExceptionOverflowExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionOverflowExceptionSqlTypeExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlNullValueExceptionXmlExceptionTargetInvocationExceptionNotSupportedExceptionSqlTypeExceptionOverflowExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlTypeExceptionOverflowExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlNullValueExceptionOverflowExceptionXmlExceptionTargetInvocationExceptionNotSupportedExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlNullValueExceptionOverflowExceptionXmlExceptionTargetInvocationExceptionNotSupportedExceptionInvalidUdtException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlNullValueExceptionOverflowExceptionXmlExceptionTargetInvocationExceptionNotSupportedExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlNullValueExceptionOverflowExceptionXmlExceptionTargetInvocationExceptionNotSupportedExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlTypeExceptionOverflowExceptionInvalidUdtException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlNullValueExceptionOverflowExceptionXmlExceptionTargetInvocationExceptionNotSupportedExceptionInvalidUdtException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlNullValueExceptionOverflowExceptionXmlExceptionTargetInvocationExceptionNotSupportedExceptionInvalidUdtExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSqlExceptionSqlNullValueExceptionOverflowExceptionXmlExceptionTargetInvocationExceptionNotSupportedExceptionInvalidUdtException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionInvalidCastExceptionSqlExceptionSqlNullValueExceptionSqlTruncateExceptionOverflowExceptionDivideByZeroException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionInvalidCastExceptionSqlNullValueExceptionSqlException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionInvalidCastExceptionSqlNullValueExceptionSqlException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionInvalidCastExceptionSqlNullValueExceptionSqlException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionInvalidCastExceptionSqlNullValueExceptionSqlException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionInvalidCastExceptionSqlNullValueExceptionSqlException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionInvalidCastExceptionSqlNullValueExceptionSqlException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionInvalidCastExceptionSqlNullValueExceptionSqlException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionInvalidCastExceptionSqlNullValueExceptionSqlException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionInvalidCastExceptionSqlNullValueExceptionSqlException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionInvalidCastExceptionSqlNullValueExceptionSqlException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionInvalidCastExceptionSqlNullValueExceptionSqlException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionInvalidCastExceptionSqlNullValueExceptionSqlException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionInvalidCastExceptionSqlNullValueExceptionSqlException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionInvalidCastExceptionSqlExceptionSqlNullValueExceptionInvalidUdtException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionInvalidCastExceptionSqlExceptionSqlNullValueExceptionTargetInvocationExceptionXmlExceptionNotSupportedException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionInvalidCastExceptionSqlExceptionSqlTypeExceptionOverflowExceptionSqlNullValueExceptionSqlTruncateExceptionDivideByZeroExceptionXmlExceptionNotSupportedExceptionInvalidUdtException
-
getFieldCount
public int getFieldCount() throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
-
-