public class OracleParameter extends DbParameter implements ICloneable
.NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Data.OracleClient.OracleParameter
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.OracleClient, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
|
static java.lang.String |
assemblyShortName
Assembly name: System.Data.OracleClient
|
static java.lang.String |
className
Qualified class name: System.Data.OracleClient.OracleParameter
|
static JCType |
classType
The type managed from JCOBridge.
|
| Constructor and Description |
|---|
OracleParameter() |
OracleParameter(java.lang.Object instance)
Internal constructor.
|
OracleParameter(java.lang.String name,
NetObject value) |
OracleParameter(java.lang.String name,
OracleType oracleType) |
OracleParameter(java.lang.String name,
OracleType oracleType,
int size) |
OracleParameter(java.lang.String name,
OracleType oracleType,
int size,
ParameterDirection direction,
boolean isNullable,
byte precision,
byte scale,
java.lang.String srcColumn,
DataRowVersion srcVersion,
NetObject value) |
OracleParameter(java.lang.String name,
OracleType oracleType,
int size,
ParameterDirection direction,
java.lang.String sourceColumn,
DataRowVersion sourceVersion,
boolean sourceColumnNullMapping,
NetObject value) |
OracleParameter(java.lang.String name,
OracleType oracleType,
int size,
java.lang.String srcColumn) |
| Modifier and Type | Method and Description |
|---|---|
static OracleParameter |
cast(IJCOBridgeReflected from)
Try to cast the
IJCOBridgeReflected instance into OracleParameter, 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
|
int |
getOffset() |
OracleType |
getOracleType() |
byte |
getPrecision() |
byte |
getScale() |
void |
ResetDbType() |
void |
ResetOracleType() |
void |
setJCOInstance(JCObject instance) |
void |
setOffset(int Offset) |
void |
setOracleType(OracleType OracleType) |
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 OracleParameter()
throws java.lang.Throwable
java.lang.Throwablepublic OracleParameter(java.lang.Object instance)
throws java.lang.Throwable
java.lang.Throwablepublic OracleParameter(java.lang.String name,
NetObject value)
throws java.lang.Throwable
java.lang.Throwablepublic OracleParameter(java.lang.String name,
OracleType oracleType)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
NotImplementedException,
MissingManifestResourceException,
ObjectDisposedException,
InvalidOperationException,
ArgumentOutOfRangeException,
FormatException
public OracleParameter(java.lang.String name,
OracleType oracleType,
int size)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
NotImplementedException,
MissingManifestResourceException,
ObjectDisposedException,
InvalidOperationException,
ArgumentOutOfRangeException,
FormatException
public OracleParameter(java.lang.String name,
OracleType oracleType,
int size,
ParameterDirection direction,
boolean isNullable,
byte precision,
byte scale,
java.lang.String srcColumn,
DataRowVersion srcVersion,
NetObject value)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
NotImplementedException,
MissingManifestResourceException,
ObjectDisposedException,
InvalidOperationException,
ArgumentOutOfRangeException,
FormatException
public OracleParameter(java.lang.String name,
OracleType oracleType,
int size,
ParameterDirection direction,
java.lang.String sourceColumn,
DataRowVersion sourceVersion,
boolean sourceColumnNullMapping,
NetObject value)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
NotImplementedException,
MissingManifestResourceException,
ObjectDisposedException,
InvalidOperationException,
ArgumentOutOfRangeException,
FormatException
public OracleParameter(java.lang.String name,
OracleType oracleType,
int size,
java.lang.String srcColumn)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
NotImplementedException,
MissingManifestResourceException,
ObjectDisposedException,
InvalidOperationException,
ArgumentOutOfRangeException,
FormatException
public static OracleParameter cast(IJCOBridgeReflected from) throws java.lang.Throwable
IJCOBridgeReflected instance into OracleParameter, a cast assert is made to check if types are compatible.from - IJCOBridgeReflected instance to be castedOracleParameter 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 int getOffset()
throws java.lang.Throwable
java.lang.Throwablepublic OracleType getOracleType() throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException
public byte getPrecision()
throws java.lang.Throwable
getPrecision in class DbParameterjava.lang.Throwablepublic 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 ResetOracleType()
throws java.lang.Throwable
java.lang.Throwablepublic void setJCOInstance(JCObject instance)
setJCOInstance in class DbParameterpublic void setOffset(int Offset)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
ArgumentOutOfRangeException,
NotImplementedException,
IndexOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
AbandonedMutexException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionArgumentOutOfRangeExceptionNotImplementedExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionAbandonedMutexExceptionpublic void setOracleType(OracleType OracleType) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
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