public class OdbcParameter extends DbParameter implements ICloneable
.NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Data.Odbc.OdbcParameter
Powered by JCOBridge: more info at https://www.jcobridge.com
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
assemblyFullName
Fully assembly qualified name: System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
|
static java.lang.String |
assemblyShortName
Assembly name: System.Data
|
static java.lang.String |
className
Qualified class name: System.Data.Odbc.OdbcParameter
|
static JCType |
classType
The type managed from JCOBridge.
|
| Constructor and Description |
|---|
OdbcParameter() |
OdbcParameter(java.lang.Object instance)
Internal constructor.
|
OdbcParameter(java.lang.String name,
NetObject value) |
OdbcParameter(java.lang.String name,
OdbcType type) |
OdbcParameter(java.lang.String name,
OdbcType type,
int size) |
OdbcParameter(java.lang.String parameterName,
OdbcType odbcType,
int size,
ParameterDirection parameterDirection,
boolean isNullable,
byte precision,
byte scale,
java.lang.String srcColumn,
DataRowVersion srcVersion,
NetObject value) |
OdbcParameter(java.lang.String parameterName,
OdbcType odbcType,
int size,
ParameterDirection parameterDirection,
byte precision,
byte scale,
java.lang.String sourceColumn,
DataRowVersion sourceVersion,
boolean sourceColumnNullMapping,
NetObject value) |
OdbcParameter(java.lang.String name,
OdbcType type,
int size,
java.lang.String sourcecolumn) |
| Modifier and Type | Method and Description |
|---|---|
static OdbcParameter |
cast(IJCOBridgeReflected from)
Try to cast the
IJCOBridgeReflected instance into OdbcParameter, a cast assert is made to check if types are compatible. |
java.lang.String |
getJCOAssemblyName()
Returns the reflected Assembly name
|
java.lang.String |
getJCOClassName()
Returns the reflected Class name
|
java.lang.Object |
getJCOInstance()
Returns the instantiated class
|
java.lang.String |
getJCOObjectName()
Returns the reflected Class name used to build the object
|
JCType |
getJCOType()
Returns the instantiated class Type
|
OdbcType |
getOdbcType() |
byte |
getPrecision() |
byte |
getScale() |
void |
ResetDbType() |
void |
ResetOdbcType() |
void |
setJCOInstance(JCObject instance) |
void |
setOdbcType(OdbcType OdbcType) |
void |
setPrecision(byte Precision) |
void |
setScale(byte Scale) |
getDbType, getDirection, getIsNullable, getParameterName, getSize, getSourceColumn, getSourceColumnNullMapping, getSourceVersion, getValue, setDbType, setDirection, setIsNullable, setParameterName, setSize, setSourceColumn, setSourceColumnNullMapping, setSourceVersion, setValueCreateObjRef, GetLifetimeService, InitializeLifetimeServiceEquals, Equals, GetHashCode, GetType, hashCode, toString, ToStringClone, ToICloneablepublic static final java.lang.String assemblyFullName
public static final java.lang.String assemblyShortName
public static final java.lang.String className
public OdbcParameter()
throws java.lang.Throwable
java.lang.Throwablepublic OdbcParameter(java.lang.Object instance)
throws java.lang.Throwable
java.lang.Throwablepublic OdbcParameter(java.lang.String name,
NetObject value)
throws java.lang.Throwable
java.lang.Throwablepublic OdbcParameter(java.lang.String name,
OdbcType type)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
MissingManifestResourceException,
NotImplementedException,
ObjectDisposedException,
InvalidOperationException,
ArgumentOutOfRangeException,
IndexOutOfRangeException
public OdbcParameter(java.lang.String name,
OdbcType type,
int size)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
MissingManifestResourceException,
NotImplementedException,
ObjectDisposedException,
InvalidOperationException,
ArgumentOutOfRangeException,
IndexOutOfRangeException
public OdbcParameter(java.lang.String parameterName,
OdbcType odbcType,
int size,
ParameterDirection parameterDirection,
boolean isNullable,
byte precision,
byte scale,
java.lang.String srcColumn,
DataRowVersion srcVersion,
NetObject value)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
MissingManifestResourceException,
NotImplementedException,
ObjectDisposedException,
InvalidOperationException,
ArgumentOutOfRangeException,
IndexOutOfRangeException
public OdbcParameter(java.lang.String parameterName,
OdbcType odbcType,
int size,
ParameterDirection parameterDirection,
byte precision,
byte scale,
java.lang.String sourceColumn,
DataRowVersion sourceVersion,
boolean sourceColumnNullMapping,
NetObject value)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
MissingManifestResourceException,
NotImplementedException,
ObjectDisposedException,
InvalidOperationException,
ArgumentOutOfRangeException,
IndexOutOfRangeException
public OdbcParameter(java.lang.String name,
OdbcType type,
int size,
java.lang.String sourcecolumn)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
MissingManifestResourceException,
NotImplementedException,
ObjectDisposedException,
InvalidOperationException,
ArgumentOutOfRangeException,
IndexOutOfRangeException
public static OdbcParameter cast(IJCOBridgeReflected from) throws java.lang.Throwable
IJCOBridgeReflected instance into OdbcParameter, a cast assert is made to check if types are compatible.from - IJCOBridgeReflected instance to be castedOdbcParameter instancejava.lang.Throwable - in case of error during cast operationpublic java.lang.String getJCOAssemblyName()
IJCOBridgeReflectedgetJCOAssemblyName in interface IJCOBridgeReflectedgetJCOAssemblyName in interface ICloneablegetJCOAssemblyName in class DbParameterString representing the Fullname of reflected Assemblypublic java.lang.String getJCOClassName()
IJCOBridgeReflectedgetJCOClassName in interface IJCOBridgeReflectedgetJCOClassName in interface ICloneablegetJCOClassName in class DbParameterString representing the Fullname of reflected Classpublic java.lang.Object getJCOInstance()
IJCOBridgeReflectedgetJCOInstance in interface IJCOBridgeReflectedgetJCOInstance in interface ICloneablegetJCOInstance in class DbParameterObject representing the CLR instance of the instantiated Classpublic java.lang.String getJCOObjectName()
IJCOBridgeReflectedgetJCOObjectName in interface IJCOBridgeReflectedgetJCOObjectName in interface ICloneablegetJCOObjectName in class DbParameterString representing the name used to allocated the object
in CLR contextpublic JCType getJCOType()
IJCOBridgeReflectedgetJCOType in interface IJCOBridgeReflectedgetJCOType in interface ICloneablegetJCOType in class DbParameterJCType representing the CLR Type of the instantiated Classpublic OdbcType getOdbcType() throws java.lang.Throwable
java.lang.Throwablepublic byte getPrecision()
throws java.lang.Throwable,
SqlNullValueException
getPrecision in class DbParameterjava.lang.ThrowableSqlNullValueExceptionpublic byte getScale()
throws java.lang.Throwable
getScale in class DbParameterjava.lang.Throwablepublic void ResetDbType()
throws java.lang.Throwable
ResetDbType in class DbParameterjava.lang.Throwablepublic void ResetOdbcType()
throws java.lang.Throwable
java.lang.Throwablepublic void setJCOInstance(JCObject instance)
setJCOInstance in class DbParameterpublic void setOdbcType(OdbcType OdbcType) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException
public void setPrecision(byte Precision)
throws java.lang.Throwable
setPrecision in class DbParameterjava.lang.Throwablepublic void setScale(byte Scale)
throws java.lang.Throwable
setScale in class DbParameterjava.lang.Throwable